Action not permitted
Modal body text goes here.
cve-2023-52639
Vulnerability from cvelistv5
Published
2024-04-03 14:54
Modified
2024-11-04 14:50
Severity ?
EPSS score ?
Summary
KVM: s390: vsie: fix race during shadow creation
References
{ "containers": { "adp": [ { "providerMetadata": { "dateUpdated": "2024-08-02T23:03:21.359Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32" } ], "title": "CVE Program Container" }, { "metrics": [ { "other": { "content": { "id": "CVE-2023-52639", "options": [ { "Exploitation": "none" }, { "Automatable": "no" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-09-10T15:53:10.387746Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2024-09-11T17:33:33.290Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "Linux", "programFiles": [ "arch/s390/kvm/vsie.c", "arch/s390/mm/gmap.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThan": "5df3b81a567e", "status": "affected", "version": "a3508fbe9dc6", "versionType": "git" }, { "lessThan": "f5572c0323cf", "status": "affected", "version": "a3508fbe9dc6", "versionType": "git" }, { "lessThan": "28bb27824f25", "status": "affected", "version": "a3508fbe9dc6", "versionType": "git" }, { "lessThan": "fe752331d4b3", "status": "affected", "version": "a3508fbe9dc6", "versionType": "git" } ] }, { "defaultStatus": "affected", "product": "Linux", "programFiles": [ "arch/s390/kvm/vsie.c", "arch/s390/mm/gmap.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "status": "affected", "version": "4.8" }, { "lessThan": "4.8", "status": "unaffected", "version": "0", "versionType": "semver" }, { "lessThanOrEqual": "6.1.*", "status": "unaffected", "version": "6.1.82", "versionType": "semver" }, { "lessThanOrEqual": "6.6.*", "status": "unaffected", "version": "6.6.22", "versionType": "semver" }, { "lessThanOrEqual": "6.7.*", "status": "unaffected", "version": "6.7.6", "versionType": "semver" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "6.8", "versionType": "original_commit_for_fix" } ] } ], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent." } ], "providerMetadata": { "dateUpdated": "2024-11-04T14:50:14.689Z", "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "shortName": "Linux" }, "references": [ { "url": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc" }, { "url": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380" }, { "url": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082" }, { "url": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32" } ], "title": "KVM: s390: vsie: fix race during shadow creation", "x_generator": { "engine": "bippy-9e1c9544281a" } } }, "cveMetadata": { "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "assignerShortName": "Linux", "cveId": "CVE-2023-52639", "datePublished": "2024-04-03T14:54:47.009Z", "dateReserved": "2024-03-06T09:52:12.093Z", "dateUpdated": "2024-11-04T14:50:14.689Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2023-52639\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-04-03T15:15:51.467\",\"lastModified\":\"2024-04-03T17:24:18.150\",\"vulnStatus\":\"Awaiting Analysis\",\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nKVM: s390: vsie: fix race during shadow creation\\n\\nRight now it is possible to see gmap-\u003eprivate being zero in\\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\\nfact that we add gmap-\u003eprivate == kvm after creation:\\n\\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\\n struct vsie_page *vsie_page)\\n{\\n[...]\\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\\n if (IS_ERR(gmap))\\n return PTR_ERR(gmap);\\n gmap-\u003eprivate = vcpu-\u003ekvm;\\n\\nLet children inherit the private field of the parent.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se resolvi\u00f3 la siguiente vulnerabilidad: KVM: s390: vsie: corrige la ejecuci\u00f3n durante la creaci\u00f3n de la sombra. En este momento es posible ver que gmap-\u0026gt;private es cero en kvm_s390_vsie_gmap_notifier, lo que provoca un bloqueo. Esto se debe al hecho de que agregamos gmap-\u0026gt;private == kvm despu\u00e9s de la creaci\u00f3n: static int adquirir_gmap_shadow(struct kvm_vcpu *vcpu, struct vsie_page *vsie_page) { [...] gmap = gmap_shadow(vcpu-\u0026gt;arch.gmap, asce, edat); si (IS_ERR(gmap)) devuelve PTR_ERR(gmap); gmap-\u0026gt;privado = vcpu-\u0026gt;kvm; Deje que los ni\u00f1os hereden el campo privado del padre.\"}],\"metrics\":{},\"references\":[{\"url\":\"https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"},{\"url\":\"https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\"}]}}" } }
rhsa-2024_4740
Vulnerability from csaf_redhat
Published
2024-07-23 15:34
Modified
2024-11-06 06:30
Summary
Red Hat Security Advisory: kernel security update
Notes
Topic
An update for kernel is now available for Red Hat Enterprise Linux 8.8 Extended Update Support.
Red 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.
Details
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
* kernel: Use after free bug in btsdio_remove due to race condition (CVE-2023-1989)
* kernel: KVM: SEV-ES / SEV-SNP VMGEXIT double fetch vulnerability (CVE-2023-4155)
* kernel: kvm: Avoid potential UAF in LPI translation cache (CVE-2024-26598)
* kernel: wifi: mac80211: fix potential key use-after-free (CVE-2023-52530)
* kernel: drm/amdgpu: use-after-free vulnerability (CVE-2024-26656)
* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)
* kernel: ipv6: sr: fix possible use-after-free and null-ptr-deref (CVE-2024-26735)
* kernel: net: ip_tunnel: prevent perpetual headroom growth (CVE-2024-26804)
* kernel: Bluetooth: Avoid potential use-after-free in hci_error_reset (CVE-2024-26801)
* kernel: netfilter: nf_tables: use timestamp to check for set element timeout (CVE-2024-27397)
* kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups (CVE-2023-52667)
* kernel: wifi: cfg80211: check A-MSDU format more carefully (CVE-2024-35937)
* kernel: net/mlx5: Properly link new fs rules into the tree (CVE-2024-35960)
* kernel: net: ena: Fix incorrect descriptor free behavior (CVE-2024-35958)
* kernel: net: qcom/emac: fix UAF in emac_remove (CVE-2021-47311)
* kernel: net: ti: fix UAF in tlan_remove_one (CVE-2021-47310)
* kernel: ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port() (CVE-2021-47548)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Terms of Use
This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for kernel is now available for Red Hat Enterprise Linux 8.8 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.", "title": "Topic" }, { "category": "general", "text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: Use after free bug in btsdio_remove due to race condition (CVE-2023-1989)\n\n* kernel: KVM: SEV-ES / SEV-SNP VMGEXIT double fetch vulnerability (CVE-2023-4155)\n\n* kernel: kvm: Avoid potential UAF in LPI translation cache (CVE-2024-26598)\n\n* kernel: wifi: mac80211: fix potential key use-after-free (CVE-2023-52530)\n\n* kernel: drm/amdgpu: use-after-free vulnerability (CVE-2024-26656)\n\n* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)\n\n* kernel: ipv6: sr: fix possible use-after-free and null-ptr-deref (CVE-2024-26735)\n\n* kernel: net: ip_tunnel: prevent perpetual headroom growth (CVE-2024-26804)\n\n* kernel: Bluetooth: Avoid potential use-after-free in hci_error_reset (CVE-2024-26801)\n\n* kernel: netfilter: nf_tables: use timestamp to check for set element timeout (CVE-2024-27397)\n\n* kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups (CVE-2023-52667)\n\n* kernel: wifi: cfg80211: check A-MSDU format more carefully (CVE-2024-35937)\n\n* kernel: net/mlx5: Properly link new fs rules into the tree (CVE-2024-35960)\n\n* kernel: net: ena: Fix incorrect descriptor free behavior (CVE-2024-35958)\n\n* kernel: net: qcom/emac: fix UAF in emac_remove (CVE-2021-47311)\n\n* kernel: net: ti: fix UAF in tlan_remove_one (CVE-2021-47310)\n\n* kernel: ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port() (CVE-2021-47548)\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-2024:4740", "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2185945", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2185945" }, { "category": "external", "summary": "2213802", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2213802" }, { "category": "external", "summary": "2265801", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2265801" }, { "category": "external", "summary": "2267787", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2267787" }, { "category": "external", "summary": "2272692", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2272692" }, { "category": "external", "summary": "2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "2273278", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273278" }, { "category": "external", "summary": "2273423", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273423" }, { "category": "external", "summary": "2273429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273429" }, { "category": "external", "summary": "2280434", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280434" }, { "category": "external", "summary": "2281350", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281350" }, { "category": "external", "summary": "2281821", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281821" }, { "category": "external", "summary": "2281920", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281920" }, { "category": "external", "summary": "2281925", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281925" }, { "category": "external", "summary": "2282471", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282471" }, { "category": "external", "summary": "2282472", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282472" }, { "category": "external", "summary": "2283401", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283401" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_4740.json" } ], "title": "Red Hat Security Advisory: kernel security update", "tracking": { "current_release_date": "2024-11-06T06:30:42+00:00", "generator": { "date": "2024-11-06T06:30:42+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:4740", "initial_release_date": "2024-07-23T15:34:26+00:00", "revision_history": [ { "date": "2024-07-23T15:34:26+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-07-23T15:34:26+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:30:42+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 EUS (v.8.8)", "product": { "name": "Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/o:redhat:rhel_eus:8.8::baseos" } } }, { "category": "product_name", "name": "Red Hat CodeReady Linux Builder EUS (v.8.8)", "product": { "name": "Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:8.8::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "perf-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "perf-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "perf-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.64.1.el8_8?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_id": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-477.64.1.el8_8?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.64.1.el8_8?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_id": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-477.64.1.el8_8?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "perf-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "perf-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "perf-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.64.1.el8_8?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_id": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@4.18.0-477.64.1.el8_8?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "bpftool-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "perf-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "perf-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "perf-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_id": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@4.18.0-477.64.1.el8_8?arch=s390x" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "kernel-0:4.18.0-477.64.1.el8_8.src", "product": { "name": "kernel-0:4.18.0-477.64.1.el8_8.src", "product_id": "kernel-0:4.18.0-477.64.1.el8_8.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@4.18.0-477.64.1.el8_8?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "product": { "name": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "product_id": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-abi-stablelists@4.18.0-477.64.1.el8_8?arch=noarch" } } }, { "category": "product_version", "name": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "product": { "name": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "product_id": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-doc@4.18.0-477.64.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.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.src", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch" }, "product_reference": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch" }, "product_reference": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.8.8)", "product_id": "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "BaseOS-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.src as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.src", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch" }, "product_reference": "kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch" }, "product_reference": "kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "perf-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.8.8)", "product_id": "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" }, "product_reference": "python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "relates_to_product_reference": "CRB-8.8.0.Z.EUS" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-47310", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-05-21T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2282472" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel\u0027s TI TLAN driver, where the tlan_remove_one function can lead to a use-after-free issue when the driver attempts to access private data after the network device has already been freed, potentially causing system instability or crash.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net: ti: fix UAF in tlan_remove_one", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability is rated as a moderate because the use-after-free can disrupt network functionality, resulting in service interruptions, but it does not directly compromise sensitive information.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47310" }, { "category": "external", "summary": "RHBZ#2282472", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282472" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47310", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47310" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47310", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47310" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052128-CVE-2021-47310-a59d@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052128-CVE-2021-47310-a59d@gregkh/T" } ], "release_date": "2024-05-21T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net: ti: fix UAF in tlan_remove_one" }, { "cve": "CVE-2021-47311", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-05-21T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2282471" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel\u0027s Qualcomm EMAC driver, where the emac_remove function can lead to a use-after-free issue when the driver tries to access data after the network device has been freed, causing instability and a crash in the network subsystem.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net: qcom/emac: fix UAF in emac_remove", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability is rated as a moderate severity because the use-after-free can disrupt the network operations, leading to potential service interruptions, but it does not directly expose sensitive data; it may result in system instability.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47311" }, { "category": "external", "summary": "RHBZ#2282471", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282471" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47311", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47311" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47311", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47311" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052129-CVE-2021-47311-47f4@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052129-CVE-2021-47311-47f4@gregkh/T" } ], "release_date": "2024-05-21T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net: qcom/emac: fix UAF in emac_remove" }, { "cve": "CVE-2021-47548", "cwe": { "id": "CWE-129", "name": "Improper Validation of Array Index" }, "discovery_date": "2024-05-24T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283401" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port()\n\nThe if statement:\n if (port \u003e= DSAF_GE_NUM)\n return;\n\nlimits the value of port less than DSAF_GE_NUM (i.e., 8).\nHowever, if the value of port is 6 or 7, an array overflow could occur:\n port_rst_off = dsaf_dev-\u003emac_cb[port]-\u003eport_rst_off;\n\nbecause the length of dsaf_dev-\u003emac_cb is DSAF_MAX_PORT_NUM (i.e., 6).\n\nTo fix this possible array overflow, we first check port and if it is\ngreater than or equal to DSAF_MAX_PORT_NUM, the function returns.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port()", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47548" }, { "category": "external", "summary": "RHBZ#2283401", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283401" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47548", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47548" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47548", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47548" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052441-CVE-2021-47548-e9c0@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052441-CVE-2021-47548-e9c0@gregkh/T" } ], "release_date": "2024-05-24T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "baseScore": 6.0, "baseSeverity": "MEDIUM", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ethernet: hisilicon: hns: hns_dsaf_misc: fix a possible array overflow in hns_dsaf_ge_srst_by_port()" }, { "cve": "CVE-2023-1989", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2023-04-11T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2185945" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in btsdio_remove in drivers\\bluetooth\\btsdio.c in the Linux Kernel. A call to btsdio_remove with an unfinished job may cause a race problem which leads to a UAF on hdev devices.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: Use after free bug in btsdio_remove due to race condition", "title": "Vulnerability summary" }, { "category": "other", "text": "Because successful exploitation of this flaw requires that a system supports SDIO hardware and that an attacker has control over attaching and detaching that hardware, Red Hat assesses the impact of this vulnerability as Moderate.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-1989" }, { "category": "external", "summary": "RHBZ#2185945", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2185945" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-1989", "url": "https://www.cve.org/CVERecord?id=CVE-2023-1989" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-1989", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-1989" }, { "category": "external", "summary": "https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git/commit/?id=f132c2d13088", "url": "https://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git/commit/?id=f132c2d13088" } ], "release_date": "2023-03-09T06:30:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "This flaw can be mitigated by preventing the affected Generic Bluetooth SDIO driver kernel module from loading during the boot time. Ensure the module is added into the blacklist file.\n~~~\nRefer: \nHow do I blacklist a kernel module to prevent it from loading automatically? \nhttps://access.redhat.com/solutions/41278\n~~~", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.0, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: Use after free bug in btsdio_remove due to race condition" }, { "cve": "CVE-2023-4155", "cwe": { "id": "CWE-367", "name": "Time-of-check Time-of-use (TOCTOU) Race Condition" }, "discovery_date": "2023-05-09T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2213802" } ], "notes": [ { "category": "description", "text": "A flaw was found in KVM AMD Secure Encrypted Virtualization (SEV) in the Linux kernel. A KVM guest using SEV-ES or SEV-SNP with multiple vCPUs can trigger a double fetch race condition vulnerability and invoke the `VMGEXIT` handler recursively. If an attacker manages to call the handler multiple times, they can trigger a stack overflow and cause a denial of service or potentially guest-to-host escape in kernel configurations without stack guard pages (`CONFIG_VMAP_STACK`).", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: KVM: SEV-ES / SEV-SNP VMGEXIT double fetch vulnerability", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Enterprise Linux 6 and 7 are not affected by this flaw, as they did not include support for KVM AMD Secure Encrypted Virtualization (SEV). \nNote: AMD SEV is currently provided as a Technology Preview in RHEL 8, therefore, it is unsupported for production use. For additional details see https://access.redhat.com/articles/4491591 and https://access.redhat.com/support/offerings/techpreview.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-4155" }, { "category": "external", "summary": "RHBZ#2213802", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2213802" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-4155", "url": "https://www.cve.org/CVERecord?id=CVE-2023-4155" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-4155", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-4155" } ], "release_date": "2023-08-04T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.3, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:N/I:N/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: KVM: SEV-ES / SEV-SNP VMGEXIT double fetch vulnerability" }, { "cve": "CVE-2023-52530", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-03-02T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2267787" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found\u00a0in the Linux kernel\u2019s IEEE 802.11 networking stack implementation functionality, used by Wifi, in how a user triggers the error path of the ieee80211_gtk_rekey_add function. This flaw allows a local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: wifi: mac80211: fix potential key use-after-free", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Enterprise Linux 9 is not affected by this vulnerability.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52530" }, { "category": "external", "summary": "RHBZ#2267787", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2267787" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52530", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52530" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52530", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52530" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024030255-CVE-2023-52530-ebf0@gregkh/T/#u", "url": "https://lore.kernel.org/linux-cve-announce/2024030255-CVE-2023-52530-ebf0@gregkh/T/#u" } ], "release_date": "2024-03-02T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: wifi: mac80211: fix potential key use-after-free" }, { "cve": "CVE-2023-52639", "cwe": { "id": "CWE-362", "name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)" }, "discovery_date": "2024-04-03T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273080" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: KVM: s390: vsie: fix race during shadow creation", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52639" }, { "category": "external", "summary": "RHBZ#2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52639", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52639" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T" } ], "release_date": "2024-04-03T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: KVM: s390: vsie: fix race during shadow creation" }, { "cve": "CVE-2023-52667", "cwe": { "id": "CWE-415", "name": "Double Free" }, "discovery_date": "2024-05-17T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281350" } ], "notes": [ { "category": "description", "text": "A double-free flaw was found in the Linux kernel ConnectX-4 and Connect-IB cards in the Mellanox driver. This issue could allow a local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Enterprise Linux 8 and 9 versions are affected.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52667" }, { "category": "external", "summary": "RHBZ#2281350", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281350" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52667", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52667" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52667", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52667" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051728-CVE-2023-52667-649b@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051728-CVE-2023-52667-649b@gregkh/T" } ], "release_date": "2024-05-17T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "To mitigate this issue, prevent module mlx5_core from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups" }, { "cve": "CVE-2024-26598", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-02-24T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2265801" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Linux kernel pertaining to a potential use-after-free (UAF) scenario in a system involving Logical Partitioning Interrupts (LPI) translation cache operations. Specifically, the issue arises when a cache hit occurs concurrently with an operation that invalidates the cache, such as a DISCARD ITS command. The root cause is traced to vgic_its_check_cache() not appropriately managing the reference count of the vgic_irq object. Upon returning from this function, the reference count of vgic_irq is not incremented. This issue can lead to the object being prematurely freed while still in use by other parts of the system, potentially resulting in undefined behavior or system instability.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: kvm: Avoid potential UAF in LPI translation cache", "title": "Vulnerability summary" }, { "category": "other", "text": "The vulnerability is assessed as having a Moderate severity due to its potential to cause system instability or undefined behavior under specific conditions. Specifically, the issue arises from concurrent operations involving the LPI translation cache and commands that invalidate this cache, such as DISCARD ITS commands. The root cause lies in vgic_its_check_cache() failing to increment the reference count of the vgic_irq object before releasing the lock. This oversight can lead to a use-after-free scenario where the object may be prematurely freed while still in use elsewhere in the system. As a consequence, if the object is accessed or modified after being freed, it can result in unpredictable behavior, crashes, or even security vulnerabilities if an attacker can control the timing of cache invalidation and subsequent accesses.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26598" }, { "category": "external", "summary": "RHBZ#2265801", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2265801" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26598", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26598" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26598", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26598" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024022338-CVE-2024-26598-24f4@gregkh/T/#u", "url": "https://lore.kernel.org/linux-cve-announce/2024022338-CVE-2024-26598-24f4@gregkh/T/#u" } ], "release_date": "2024-02-23T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "No mitigation is currently available for this vulnerability. Make sure to perform the updates as they become available.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: kvm: Avoid potential UAF in LPI translation cache" }, { "cve": "CVE-2024-26656", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-04-02T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2272692" } ], "notes": [ { "category": "description", "text": "A failure flaw was found in the Linux kernel\u2019s AMDGPU driver in how a user sends ioctl with an invalid address and size when using the AMD GPU. This flaw allows a local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: drm/amdgpu: use-after-free vulnerability", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26656" }, { "category": "external", "summary": "RHBZ#2272692", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2272692" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26656", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26656" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26656", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26656" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040247-CVE-2024-26656-ffaa@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040247-CVE-2024-26656-ffaa@gregkh/T" } ], "release_date": "2024-04-02T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: drm/amdgpu: use-after-free vulnerability" }, { "cve": "CVE-2024-26735", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-04-03T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273278" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u2019s IPv6 protocol functionality. This flaw allows a local user to potentially crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ipv6: sr: fix possible use-after-free and null-ptr-deref", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26735" }, { "category": "external", "summary": "RHBZ#2273278", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273278" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26735", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26735" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26735", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26735" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040359-CVE-2024-26735-462f@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040359-CVE-2024-26735-462f@gregkh/T" } ], "release_date": "2024-04-03T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ipv6: sr: fix possible use-after-free and null-ptr-deref" }, { "cve": "CVE-2024-26801", "discovery_date": "2024-04-04T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273429" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u2019s Bluetooth subsystem in how it handles hardware failure when it occurs. This flaw allows a local user to potentially crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: Bluetooth: Avoid potential use-after-free in hci_error_reset", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26801" }, { "category": "external", "summary": "RHBZ#2273429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273429" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26801", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26801" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26801", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26801" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040403-CVE-2024-26801-da9f@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040403-CVE-2024-26801-da9f@gregkh/T" } ], "release_date": "2024-04-04T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: Bluetooth: Avoid potential use-after-free in hci_error_reset" }, { "cve": "CVE-2024-26804", "discovery_date": "2024-04-04T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273423" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u2019s ip_tunnel functionality when a user uses the ip_tunnel infrastructure. This flaw allows a\u00a0local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net: ip_tunnel: prevent perpetual headroom growth", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26804" }, { "category": "external", "summary": "RHBZ#2273423", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273423" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26804", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26804" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26804", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26804" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040404-CVE-2024-26804-a6ff@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040404-CVE-2024-26804-a6ff@gregkh/T" } ], "release_date": "2024-04-04T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net: ip_tunnel: prevent perpetual headroom growth" }, { "cve": "CVE-2024-27397", "discovery_date": "2024-05-14T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2280434" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u2019s netfilter subsystem in how a user triggers the element timeout. This flaw allows a local user to crash or potentially escalate their privileges on the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nf_tables: use timestamp to check for set element timeout", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability impact level between Moderate and High, and chosen Moderate.", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-27397" }, { "category": "external", "summary": "RHBZ#2280434", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280434" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-27397", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27397" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-27397", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-27397" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050837-CVE-2024-27397-fd1e@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050837-CVE-2024-27397-fd1e@gregkh/T" } ], "release_date": "2024-05-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" }, { "category": "workaround", "details": "In order to trigger the issue, it requires the ability to create user/net namespaces.\n\nOn non-containerized deployments of Red Hat Enterprise Linux 8, you can disable user namespaces by setting user.max_user_namespaces to 0:\n\n# echo \"user.max_user_namespaces=0\" \u003e /etc/sysctl.d/userns.conf\n# sysctl -p /etc/sysctl.d/userns.conf\n\nOn containerized deployments, such as Red Hat OpenShift Container Platform, do not use this mitigation as the functionality is needed to be enabled.", "product_ids": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.0, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: netfilter: nf_tables: use timestamp to check for set element timeout" }, { "cve": "CVE-2024-35937", "discovery_date": "2024-05-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281821" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nwifi: cfg80211: check A-MSDU format more carefully\n\nIf it looks like there\u0027s another subframe in the A-MSDU\nbut the header isn\u0027t fully there, we can end up reading\ndata out of bounds, only to discard later. Make this a\nbit more careful and check if the subframe header can\neven be present.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: wifi: cfg80211: check A-MSDU format more carefully", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-35937" }, { "category": "external", "summary": "RHBZ#2281821", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281821" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-35937", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35937" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-35937", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35937" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051918-CVE-2024-35937-0415@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051918-CVE-2024-35937-0415@gregkh/T" } ], "release_date": "2024-05-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: wifi: cfg80211: check A-MSDU format more carefully" }, { "cve": "CVE-2024-35958", "discovery_date": "2024-05-20T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281925" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet: ena: Fix incorrect descriptor free behavior\n\nENA has two types of TX queues:\n- queues which only process TX packets arriving from the network stack\n- queues which only process TX packets forwarded to it by XDP_REDIRECT\n or XDP_TX instructions\n\nThe ena_free_tx_bufs() cycles through all descriptors in a TX queue\nand unmaps + frees every descriptor that hasn\u0027t been acknowledged yet\nby the device (uncompleted TX transactions).\nThe function assumes that the processed TX queue is necessarily from\nthe first category listed above and ends up using napi_consume_skb()\nfor descriptors belonging to an XDP specific queue.\n\nThis patch solves a bug in which, in case of a VF reset, the\ndescriptors aren\u0027t freed correctly, leading to crashes.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net: ena: Fix incorrect descriptor free behavior", "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-35958" }, { "category": "external", "summary": "RHBZ#2281925", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281925" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-35958", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35958" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-35958", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35958" } ], "release_date": "2024-05-20T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net: ena: Fix incorrect descriptor free behavior" }, { "cve": "CVE-2024-35960", "discovery_date": "2024-05-20T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281920" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/mlx5: Properly link new fs rules into the tree\n\nPreviously, add_rule_fg would only add newly created rules from the\nhandle into the tree when they had a refcount of 1. On the other hand,\ncreate_flow_handle tries hard to find and reference already existing\nidentical rules instead of creating new ones.\n\nThese two behaviors can result in a situation where create_flow_handle\n1) creates a new rule and references it, then\n2) in a subsequent step during the same handle creation references it\n again,\nresulting in a rule with a refcount of 2 that is not linked into the\ntree, will have a NULL parent and root and will result in a crash when\nthe flow group is deleted because del_sw_hw_rule, invoked on rule\ndeletion, assumes node-\u003eparent is != NULL.\n\nThis happened in the wild, due to another bug related to incorrect\nhandling of duplicate pkt_reformat ids, which lead to the code in\ncreate_flow_handle incorrectly referencing a just-added rule in the same\nflow handle, resulting in the problem described above. Full details are\nat [1].\n\nThis patch changes add_rule_fg to add new rules without parents into\nthe tree, properly initializing them and avoiding the crash. This makes\nit more consistent with how rules are added to an FTE in\ncreate_flow_handle.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/mlx5: Properly link new fs rules into the tree", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "known_not_affected": [ "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-headers-0:4.18.0-477.64.1.el8_8.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-35960" }, { "category": "external", "summary": "RHBZ#2281920", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281920" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-35960", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35960" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-35960", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35960" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052020-CVE-2024-35960-2eaa@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052020-CVE-2024-35960-2eaa@gregkh/T" } ], "release_date": "2024-05-20T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-07-23T15:34:26+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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "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.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "BaseOS-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "BaseOS-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:bpftool-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.src", "CRB-8.8.0.Z.EUS:kernel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-abi-stablelists-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-cross-headers-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-core-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debug-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-aarch64-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-s390x-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-debuginfo-common-x86_64-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-doc-0:4.18.0-477.64.1.el8_8.noarch", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-modules-extra-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-tools-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:kernel-tools-libs-devel-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-core-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-devel-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:kernel-zfcpdump-modules-extra-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-0:4.18.0-477.64.1.el8_8.x86_64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.aarch64", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.ppc64le", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.s390x", "CRB-8.8.0.Z.EUS:python3-perf-debuginfo-0:4.18.0-477.64.1.el8_8.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/mlx5: Properly link new fs rules into the tree" } ] }
rhsa-2024_5257
Vulnerability from csaf_redhat
Published
2024-08-13 10:08
Modified
2024-11-06 06:38
Summary
Red Hat Security Advisory: kernel security update
Notes
Topic
An update for kernel is now available for Red Hat Enterprise Linux 9.0 Update Services for SAP Solutions.
Red Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.
Details
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
* kernel: netfilter: nf_tables: disallow anonymous set with timeout flag (CVE-2024-26642)
* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)
* kernel: netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain (CVE-2024-26808)
* kernel: TIPC message reassembly use-after-free remote code execution vulnerability (CVE-2024-36886)
* kernel: fs: sysfs: Fix reference leak in sysfs_break_active_protection() (CVE-2024-26993)
* kernel: dmaengine/idxd: hardware erratum allows potential security problem with direct access by untrusted application (CVE-2024-21823)
* kernel: netfilter: nf_tables: use timestamp to check for set element timeout (CVE-2024-27397)
* kernel: xen-netfront: Add missing skb_mark_for_recycle (CVE-2024-27393)
* kernel: netfilter: nft_flow_offload: reset dst in route object after setting up flow (CVE-2024-27403)
* kernel: netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get() (CVE-2024-35898)
* kernel: netfilter: nf_tables: discard table flag update with pending basechain deletion (CVE-2024-35897)
* kernel: ionic: fix use after netif_napi_del() (CVE-2024-39502)
* kernel: scsi: qedi: Fix crash while reading debugfs attribute (CVE-2024-40978)
* kernel: net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change (CVE-2021-47624)
* kernel: virtio-net: tap: mlx5_core short frame denial of service (CVE-2024-41090)
* kernel: virtio-net: tun: mlx5_core short frame denial of service (CVE-2024-41091)
* kernel: KEV - Beaky Buzzard (CVE-2024-36971)
Bug Fix(es):
* updating nvme firmware, '# nvme list' output does not reflect the new firmware version without rebooting. (JIRA:RHEL-46809)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer the CVE page(s) listed in the References section.
Terms of Use
This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.
{ "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.0 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_tables: disallow anonymous set with timeout flag (CVE-2024-26642)\n\n* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)\n\n* kernel: netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain (CVE-2024-26808)\n\n* kernel: TIPC message reassembly use-after-free remote code execution vulnerability (CVE-2024-36886)\n\n* kernel: fs: sysfs: Fix reference leak in sysfs_break_active_protection() (CVE-2024-26993)\n\n* kernel: dmaengine/idxd: hardware erratum allows potential security problem with direct access by untrusted application (CVE-2024-21823)\n\n* kernel: netfilter: nf_tables: use timestamp to check for set element timeout (CVE-2024-27397)\n\n* kernel: xen-netfront: Add missing skb_mark_for_recycle (CVE-2024-27393)\n\n* kernel: netfilter: nft_flow_offload: reset dst in route object after setting up flow (CVE-2024-27403)\n\n* kernel: netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get() (CVE-2024-35898)\n\n* kernel: netfilter: nf_tables: discard table flag update with pending basechain deletion (CVE-2024-35897)\n\n* kernel: ionic: fix use after netif_napi_del() (CVE-2024-39502)\n\n* kernel: scsi: qedi: Fix crash while reading debugfs attribute (CVE-2024-40978)\n\n* kernel: net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change (CVE-2021-47624)\n\n* kernel: virtio-net: tap: mlx5_core short frame denial of service (CVE-2024-41090)\n\n* kernel: virtio-net: tun: mlx5_core short frame denial of service (CVE-2024-41091)\n\n* kernel: KEV - Beaky Buzzard (CVE-2024-36971)\n\nBug Fix(es):\n\n* updating nvme firmware, \u0027# nvme list\u0027 output does not reflect the new firmware version without rebooting. (JIRA:RHEL-46809)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer 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-2024:5257", "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#important", "url": "https://access.redhat.com/security/updates/classification/#important" }, { "category": "external", "summary": "2270881", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2270881" }, { "category": "external", "summary": "2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "2273405", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273405" }, { "category": "external", "summary": "2277238", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2277238" }, { "category": "external", "summary": "2278314", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278314" }, { "category": "external", "summary": "2278989", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278989" }, { "category": "external", "summary": "2280434", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280434" }, { "category": "external", "summary": "2280745", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280745" }, { "category": "external", "summary": "2281127", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281127" }, { "category": "external", "summary": "2281669", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281669" }, { "category": "external", "summary": "2281672", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281672" }, { "category": "external", "summary": "2292331", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2292331" }, { "category": "external", "summary": "2297474", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297474" }, { "category": "external", "summary": "2297562", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297562" }, { "category": "external", "summary": "2298108", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298108" }, { "category": "external", "summary": "2299240", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2299240" }, { "category": "external", "summary": "2299336", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2299336" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_5257.json" } ], "title": "Red Hat Security Advisory: kernel security update", "tracking": { "current_release_date": "2024-11-06T06:38:25+00:00", "generator": { "date": "2024-11-06T06:38:25+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:5257", "initial_release_date": "2024-08-13T10:08:33+00:00", "revision_history": [ { "date": "2024-08-13T10:08:33+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-08-13T10:08:33+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:38:25+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.0)", "product": { "name": "Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_e4s:9.0::appstream" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product": { "name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S", "product_identification_helper": { "cpe": "cpe:/o:redhat:rhel_e4s:9.0::baseos" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.112.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.112.1.el9_0.aarch64", "product": { "name": "perf-0:5.14.0-70.112.1.el9_0.aarch64", "product_id": "perf-0:5.14.0-70.112.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.112.1.el9_0?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.112.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product": { "name": "perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product_id": "perf-0:5.14.0-70.112.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.112.1.el9_0?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.112.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.112.1.el9_0.x86_64", "product": { "name": "perf-0:5.14.0-70.112.1.el9_0.x86_64", "product_id": "perf-0:5.14.0-70.112.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.112.1.el9_0?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "bpftool-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-70.112.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.112.1.el9_0.s390x", "product": { "name": "perf-0:5.14.0-70.112.1.el9_0.s390x", "product_id": "perf-0:5.14.0-70.112.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.112.1.el9_0?arch=s390x" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "kernel-0:5.14.0-70.112.1.el9_0.src", "product": { "name": "kernel-0:5.14.0-70.112.1.el9_0.src", "product_id": "kernel-0:5.14.0-70.112.1.el9_0.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.112.1.el9_0?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "product": { "name": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "product_id": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-70.112.1.el9_0?arch=noarch" } } }, { "category": "product_version", "name": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "product": { "name": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "product_id": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-70.112.1.el9_0?arch=noarch" } } } ], "category": "architecture", "name": "noarch" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.src as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.src", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch" }, "product_reference": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)", "product_id": "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "AppStream-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.src", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch" }, "product_reference": "kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "perf-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)", "product_id": "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-47624", "cwe": { "id": "CWE-402", "name": "Transmission of Private Resources into a New Sphere (\u0027Resource Leak\u0027)" }, "discovery_date": "2024-07-16T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298108" } ], "notes": [ { "category": "description", "text": "A memory leak flaw was found in the Linux kernel\u2019s SunRpc filesystem (sysfs). This flaw allows a local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47624" }, { "category": "external", "summary": "RHBZ#2298108", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298108" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47624", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47624" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47624", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47624" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071646-CVE-2021-47624-86cd@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071646-CVE-2021-47624-86cd@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "workaround", "details": "To mitigate this issue, prevent module sunrpc from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "LOW", "baseScore": 3.3, "baseSeverity": "LOW", "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:L", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/sunrpc: fix reference count leaks in rpc_sysfs_xprt_state_change" }, { "cve": "CVE-2023-52639", "cwe": { "id": "CWE-362", "name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)" }, "discovery_date": "2024-04-03T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273080" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: KVM: s390: vsie: fix race during shadow creation", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52639" }, { "category": "external", "summary": "RHBZ#2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52639", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52639" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T" } ], "release_date": "2024-04-03T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: KVM: s390: vsie: fix race during shadow creation" }, { "cve": "CVE-2024-21823", "discovery_date": "2024-05-03T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2278989" } ], "notes": [ { "category": "description", "text": "Hardware logic with insecure de-synchronization in Intel(R) DSA and Intel(R) IAA for some Intel(R) 4th or 5th generation Xeon(R) processors may allow an authorized user to potentially enable escalation of privilege local access", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: dmaengine/idxd: hardware erratum allows potential security problem with direct access by untrusted application", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-21823" }, { "category": "external", "summary": "RHBZ#2278989", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278989" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-21823", "url": "https://www.cve.org/CVERecord?id=CVE-2024-21823" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-21823", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-21823" } ], "release_date": "2024-05-14T17:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "privilegesRequired": "LOW", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:N/I:L/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: dmaengine/idxd: hardware erratum allows potential security problem with direct access by untrusted application" }, { "cve": "CVE-2024-26642", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-03-21T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2270881" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnetfilter: nf_tables: disallow anonymous set with timeout flag\n\nAnonymous sets are never used with timeout from userspace, reject this.\nException to this rule is NFT_SET_EVAL to ensure legacy meters still work.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nf_tables: disallow anonymous set with timeout flag", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26642" }, { "category": "external", "summary": "RHBZ#2270881", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2270881" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26642", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26642" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26642", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26642" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024032150-CVE-2024-26642-3549@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024032150-CVE-2024-26642-3549@gregkh/T" } ], "release_date": "2024-03-21T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: netfilter: nf_tables: disallow anonymous set with timeout flag" }, { "cve": "CVE-2024-26808", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-04-04T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273405" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel\u0027s netfilter subsystem, related to the nft_chain_filter feature. This issue occurs when a NETDEV_UNREGISTER event is reported, which can leave a stale reference to a network device in the ingress basechain. If this issue is not addressed, this stale reference could result in lingering issues with network device handling.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain", "title": "Vulnerability summary" }, { "category": "other", "text": "The vulnerability has been fixed by ensuring that network devices are correctly removed from the basechain when these events occur. It affects multiple Linux kernel versions and is rated as a medium-severity issue with a CVSS v3 base score of 5.5, indicating it could lead to a denial of service under certain conditions.", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26808" }, { "category": "external", "summary": "RHBZ#2273405", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273405" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26808", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26808" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26808", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26808" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040458-CVE-2024-26808-2df2@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040458-CVE-2024-26808-2df2@gregkh/T" } ], "release_date": "2024-04-04T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: netfilter: nft_chain_filter: handle NETDEV_UNREGISTER for inet/ingress basechain" }, { "cve": "CVE-2024-26993", "discovery_date": "2024-05-01T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2278314" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nfs: sysfs: Fix reference leak in sysfs_break_active_protection()\n\nThe sysfs_break_active_protection() routine has an obvious reference\nleak in its error path. If the call to kernfs_find_and_get() fails then\nkn will be NULL, so the companion sysfs_unbreak_active_protection()\nroutine won\u0027t get called (and would only cause an access violation by\ntrying to dereference kn-\u003eparent if it was called). As a result, the\nreference to kobj acquired at the start of the function will never be\nreleased.\n\nFix the leak by adding an explicit kobject_put() call when kn is NULL.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: fs: sysfs: Fix reference leak in sysfs_break_active_protection()", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26993" }, { "category": "external", "summary": "RHBZ#2278314", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2278314" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26993", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26993" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26993", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26993" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050144-CVE-2024-26993-fe52@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050144-CVE-2024-26993-fe52@gregkh/T" } ], "release_date": "2024-05-01T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: fs: sysfs: Fix reference leak in sysfs_break_active_protection()" }, { "cve": "CVE-2024-27393", "discovery_date": "2024-05-08T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2280745" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nxen-netfront: Add missing skb_mark_for_recycle\n\nNotice that skb_mark_for_recycle() is introduced later than fixes tag in\ncommit 6a5bcd84e886 (\"page_pool: Allow drivers to hint on SKB recycling\").\n\nIt is believed that fixes tag were missing a call to page_pool_release_page()\nbetween v5.9 to v5.14, after which is should have used skb_mark_for_recycle().\nSince v6.6 the call page_pool_release_page() were removed (in\ncommit 535b9c61bdef (\"net: page_pool: hide page_pool_release_page()\")\nand remaining callers converted (in commit 6bfef2ec0172 (\"Merge branch\n\u0027net-page_pool-remove-page_pool_release_page\u0027\")).\n\nThis leak became visible in v6.8 via commit dba1b8a7ab68 (\"mm/page_pool: catch\npage_pool memory leaks\").", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: xen-netfront: Add missing skb_mark_for_recycle", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-27393" }, { "category": "external", "summary": "RHBZ#2280745", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280745" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-27393", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27393" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-27393", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-27393" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050835-CVE-2024-27393-b804@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050835-CVE-2024-27393-b804@gregkh/T" } ], "release_date": "2024-05-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: xen-netfront: Add missing skb_mark_for_recycle" }, { "cve": "CVE-2024-27397", "discovery_date": "2024-05-14T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2280434" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u2019s netfilter subsystem in how a user triggers the element timeout. This flaw allows a local user to crash or potentially escalate their privileges on the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nf_tables: use timestamp to check for set element timeout", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability impact level between Moderate and High, and chosen Moderate.", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-27397" }, { "category": "external", "summary": "RHBZ#2280434", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2280434" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-27397", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27397" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-27397", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-27397" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024050837-CVE-2024-27397-fd1e@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024050837-CVE-2024-27397-fd1e@gregkh/T" } ], "release_date": "2024-05-08T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "workaround", "details": "In order to trigger the issue, it requires the ability to create user/net namespaces.\n\nOn non-containerized deployments of Red Hat Enterprise Linux 8, you can disable user namespaces by setting user.max_user_namespaces to 0:\n\n# echo \"user.max_user_namespaces=0\" \u003e /etc/sysctl.d/userns.conf\n# sysctl -p /etc/sysctl.d/userns.conf\n\nOn containerized deployments, such as Red Hat OpenShift Container Platform, do not use this mitigation as the functionality is needed to be enabled.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.0, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: netfilter: nf_tables: use timestamp to check for set element timeout" }, { "cve": "CVE-2024-27403", "discovery_date": "2024-05-17T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281127" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnetfilter: nft_flow_offload: reset dst in route object after setting up flow\n\ndst is transferred to the flow object, route object does not own it\nanymore. Reset dst in route object, otherwise if flow_offload_add()\nfails, error path releases dst twice, leading to a refcount underflow.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nft_flow_offload: reset dst in route object after setting up flow", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-27403" }, { "category": "external", "summary": "RHBZ#2281127", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281127" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-27403", "url": "https://www.cve.org/CVERecord?id=CVE-2024-27403" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-27403", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-27403" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051738-CVE-2024-27403-c4ba@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051738-CVE-2024-27403-c4ba@gregkh/T" } ], "release_date": "2024-05-17T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: netfilter: nft_flow_offload: reset dst in route object after setting up flow" }, { "cve": "CVE-2024-35897", "discovery_date": "2024-05-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281672" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnetfilter: nf_tables: discard table flag update with pending basechain deletion\n\nHook unregistration is deferred to the commit phase, same occurs with\nhook updates triggered by the table dormant flag. When both commands are\ncombined, this results in deleting a basechain while leaving its hook\nstill registered in the core.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nf_tables: discard table flag update with pending basechain deletion", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-35897" }, { "category": "external", "summary": "RHBZ#2281672", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281672" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-35897", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35897" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-35897", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35897" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051951-CVE-2024-35897-1585@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051951-CVE-2024-35897-1585@gregkh/T" } ], "release_date": "2024-05-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: netfilter: nf_tables: discard table flag update with pending basechain deletion" }, { "cve": "CVE-2024-35898", "discovery_date": "2024-05-19T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281669" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnetfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()\n\nnft_unregister_flowtable_type() within nf_flow_inet_module_exit() can\nconcurrent with __nft_flowtable_type_get() within nf_tables_newflowtable().\nAnd thhere is not any protection when iterate over nf_tables_flowtables\nlist in __nft_flowtable_type_get(). Therefore, there is pertential\ndata-race of nf_tables_flowtables list entry.\n\nUse list_for_each_entry_rcu() to iterate over nf_tables_flowtables list\nin __nft_flowtable_type_get(), and use rcu_read_lock() in the caller\nnft_flowtable_type_get() to protect the entire type query process.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-35898" }, { "category": "external", "summary": "RHBZ#2281669", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281669" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-35898", "url": "https://www.cve.org/CVERecord?id=CVE-2024-35898" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-35898", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-35898" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051951-CVE-2024-35898-a10e@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051951-CVE-2024-35898-a10e@gregkh/T" } ], "release_date": "2024-05-19T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get()" }, { "cve": "CVE-2024-36886", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-06-06T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2277238" } ], "notes": [ { "category": "description", "text": "A use-after-free (UAF) flaw exists in the Linux Kernel within the reassembly of fragmented TIPC messages, specifically in the tipc_buf_append() function. The issue results due to a lack of checks in the error handling cleanup and can trigger a UAF on \"struct sk_buff\", which may lead to remote code execution.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: TIPC message reassembly use-after-free remote code execution vulnerability", "title": "Vulnerability summary" }, { "category": "other", "text": "While the TIPC module is not loaded by default, this flaw might be used as one in a series of attacks. For that reason, and because of the possibility of remote code execution on systems where this module has been loaded, Red Hat assesses the impact of this flaw as Important.", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-36886" }, { "category": "external", "summary": "RHBZ#2277238", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2277238" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-36886", "url": "https://www.cve.org/CVERecord?id=CVE-2024-36886" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-36886", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-36886" }, { "category": "external", "summary": "https://lore.kernel.org/all/752f1ccf762223d109845365d07f55414058e5a3.1714484273.git.pabeni@redhat.com/", "url": "https://lore.kernel.org/all/752f1ccf762223d109845365d07f55414058e5a3.1714484273.git.pabeni@redhat.com/" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024053033-CVE-2024-36886-dd83@gregkh/T/#u", "url": "https://lore.kernel.org/linux-cve-announce/2024053033-CVE-2024-36886-dd83@gregkh/T/#u" } ], "release_date": "2024-06-06T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "workaround", "details": "The TIPC module is not automatically loaded in default configurations. When required, administrative privileges are required to explicitly load this module.\nTo determine if the TIPC module is loaded, use the following command:\n# grep tipc /proc/modules\nLook for output similar to the following:\ntipc 479232 0 - Live 0xffffffffc1ba5000\nip6_udp_tunnel 16384 1 tipc, Live 0xffffffffc1b9b000\nudp_tunnel 32768 1 tipc, Live 0xffffffffc1b8b000\n\nLoading the module can be prevented with the following instructions:\n# echo \"install tipc /bin/true\" \u003e\u003e /etc/modprobe.d/disable-tipc.conf\nThe system will need to be restarted if the module is loaded. In most circumstances, the TIPC kernel module will be unable to be unloaded while any network interfaces are active and the protocol is in use.\n\nIf the system requires this module to work correctly, this mitigation may not be suitable.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "ADJACENT_NETWORK", "availabilityImpact": "HIGH", "baseScore": 7.1, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:A/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "kernel: TIPC message reassembly use-after-free remote code execution vulnerability" }, { "cve": "CVE-2024-36971", "discovery_date": "2024-06-10T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2292331" } ], "notes": [ { "category": "description", "text": "A use-after-free flaw was found in the Linux kernel\u0027s network route management. This flaw allows an attacker to alter the behavior of certain network connections.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net: kernel: UAF in network route management", "title": "Vulnerability summary" }, { "category": "other", "text": "Environments which use third-party KABI modules may experience kernel crashes after applying errata for CVE-2024-36971. Contact your module vendor about an update. Until these third party modules can be fixed, you can prevent crashes by disabling them. This problem stems from modules which use the `negative_advice()` function.", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-36971" }, { "category": "external", "summary": "RHBZ#2292331", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2292331" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-36971", "url": "https://www.cve.org/CVERecord?id=CVE-2024-36971" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-36971", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-36971" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/20240610090330.1347021-2-lee@kernel.org/T", "url": "https://lore.kernel.org/linux-cve-announce/20240610090330.1347021-2-lee@kernel.org/T" }, { "category": "external", "summary": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog", "url": "https://www.cisa.gov/known-exploited-vulnerabilities-catalog" } ], "release_date": "2024-06-10T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "workaround", "details": "Red Hat has investigated whether a possible mitigation exists for this issue, and has not been able to identify a practical example. Please update the affected package as soon as possible.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_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-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "exploit_status", "date": "2024-08-07T00:00:00+00:00", "details": "CISA: https://www.cisa.gov/known-exploited-vulnerabilities-catalog" }, { "category": "impact", "details": "Important" } ], "title": "kernel: net: kernel: UAF in network route management" }, { "cve": "CVE-2024-39502", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-07-12T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297474" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nionic: fix use after netif_napi_del()\n\nWhen queues are started, netif_napi_add() and napi_enable() are called.\nIf there are 4 queues and only 3 queues are used for the current\nconfiguration, only 3 queues\u0027 napi should be registered and enabled.\nThe ionic_qcq_enable() checks whether the .poll pointer is not NULL for\nenabling only the using queue\u0027 napi. Unused queues\u0027 napi will not be\nregistered by netif_napi_add(), so the .poll pointer indicates NULL.\nBut it couldn\u0027t distinguish whether the napi was unregistered or not\nbecause netif_napi_del() doesn\u0027t reset the .poll pointer to NULL.\nSo, ionic_qcq_enable() calls napi_enable() for the queue, which was\nunregistered by netif_napi_del().\n\nReproducer:\n ethtool -L \u003cinterface name\u003e rx 1 tx 1 combined 0\n ethtool -L \u003cinterface name\u003e rx 0 tx 0 combined 1\n ethtool -L \u003cinterface name\u003e rx 0 tx 0 combined 4\n\nSplat looks like:\nkernel BUG at net/core/dev.c:6666!\nOops: invalid opcode: 0000 [#1] PREEMPT SMP NOPTI\nCPU: 3 PID: 1057 Comm: kworker/3:3 Not tainted 6.10.0-rc2+ #16\nWorkqueue: events ionic_lif_deferred_work [ionic]\nRIP: 0010:napi_enable+0x3b/0x40\nCode: 48 89 c2 48 83 e2 f6 80 b9 61 09 00 00 00 74 0d 48 83 bf 60 01 00 00 00 74 03 80 ce 01 f0 4f\nRSP: 0018:ffffb6ed83227d48 EFLAGS: 00010246\nRAX: 0000000000000000 RBX: ffff97560cda0828 RCX: 0000000000000029\nRDX: 0000000000000001 RSI: 0000000000000000 RDI: ffff97560cda0a28\nRBP: ffffb6ed83227d50 R08: 0000000000000400 R09: 0000000000000001\nR10: 0000000000000001 R11: 0000000000000001 R12: 0000000000000000\nR13: ffff97560ce3c1a0 R14: 0000000000000000 R15: ffff975613ba0a20\nFS: 0000000000000000(0000) GS:ffff975d5f780000(0000) knlGS:0000000000000000\nCS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033\nCR2: 00007f8f734ee200 CR3: 0000000103e50000 CR4: 00000000007506f0\nPKRU: 55555554\nCall Trace:\n \u003cTASK\u003e\n ? die+0x33/0x90\n ? do_trap+0xd9/0x100\n ? napi_enable+0x3b/0x40\n ? do_error_trap+0x83/0xb0\n ? napi_enable+0x3b/0x40\n ? napi_enable+0x3b/0x40\n ? exc_invalid_op+0x4e/0x70\n ? napi_enable+0x3b/0x40\n ? asm_exc_invalid_op+0x16/0x20\n ? napi_enable+0x3b/0x40\n ionic_qcq_enable+0xb7/0x180 [ionic 59bdfc8a035436e1c4224ff7d10789e3f14643f8]\n ionic_start_queues+0xc4/0x290 [ionic 59bdfc8a035436e1c4224ff7d10789e3f14643f8]\n ionic_link_status_check+0x11c/0x170 [ionic 59bdfc8a035436e1c4224ff7d10789e3f14643f8]\n ionic_lif_deferred_work+0x129/0x280 [ionic 59bdfc8a035436e1c4224ff7d10789e3f14643f8]\n process_one_work+0x145/0x360\n worker_thread+0x2bb/0x3d0\n ? __pfx_worker_thread+0x10/0x10\n kthread+0xcc/0x100\n ? __pfx_kthread+0x10/0x10\n ret_from_fork+0x2d/0x50\n ? __pfx_kthread+0x10/0x10\n ret_from_fork_asm+0x1a/0x30", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ionic: fix use after netif_napi_del()", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-39502" }, { "category": "external", "summary": "RHBZ#2297474", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297474" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-39502", "url": "https://www.cve.org/CVERecord?id=CVE-2024-39502" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-39502", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-39502" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071204-CVE-2024-39502-afe9@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071204-CVE-2024-39502-afe9@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ionic: fix use after netif_napi_del()" }, { "cve": "CVE-2024-40978", "cwe": { "id": "CWE-822", "name": "Untrusted Pointer Dereference" }, "discovery_date": "2024-07-12T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297562" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nscsi: qedi: Fix crash while reading debugfs attribute\n\nThe qedi_dbg_do_not_recover_cmd_read() function invokes sprintf() directly\non a __user pointer, which results into the crash.\n\nTo fix this issue, use a small local stack buffer for sprintf() and then\ncall simple_read_from_buffer(), which in turns make the copy_to_user()\ncall.\n\nBUG: unable to handle page fault for address: 00007f4801111000\nPGD 8000000864df6067 P4D 8000000864df6067 PUD 864df7067 PMD 846028067 PTE 0\nOops: 0002 [#1] PREEMPT SMP PTI\nHardware name: HPE ProLiant DL380 Gen10/ProLiant DL380 Gen10, BIOS U30 06/15/2023\nRIP: 0010:memcpy_orig+0xcd/0x130\nRSP: 0018:ffffb7a18c3ffc40 EFLAGS: 00010202\nRAX: 00007f4801111000 RBX: 00007f4801111000 RCX: 000000000000000f\nRDX: 000000000000000f RSI: ffffffffc0bfd7a0 RDI: 00007f4801111000\nRBP: ffffffffc0bfd7a0 R08: 725f746f6e5f6f64 R09: 3d7265766f636572\nR10: ffffb7a18c3ffd08 R11: 0000000000000000 R12: 00007f4881110fff\nR13: 000000007fffffff R14: ffffb7a18c3ffca0 R15: ffffffffc0bfd7af\nFS: 00007f480118a740(0000) GS:ffff98e38af00000(0000) knlGS:0000000000000000\nCS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033\nCR2: 00007f4801111000 CR3: 0000000864b8e001 CR4: 00000000007706e0\nDR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000\nDR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400\nPKRU: 55555554\nCall Trace:\n \u003cTASK\u003e\n ? __die_body+0x1a/0x60\n ? page_fault_oops+0x183/0x510\n ? exc_page_fault+0x69/0x150\n ? asm_exc_page_fault+0x22/0x30\n ? memcpy_orig+0xcd/0x130\n vsnprintf+0x102/0x4c0\n sprintf+0x51/0x80\n qedi_dbg_do_not_recover_cmd_read+0x2f/0x50 [qedi 6bcfdeeecdea037da47069eca2ba717c84a77324]\n full_proxy_read+0x50/0x80\n vfs_read+0xa5/0x2e0\n ? folio_add_new_anon_rmap+0x44/0xa0\n ? set_pte_at+0x15/0x30\n ? do_pte_missing+0x426/0x7f0\n ksys_read+0xa5/0xe0\n do_syscall_64+0x58/0x80\n ? __count_memcg_events+0x46/0x90\n ? count_memcg_event_mm+0x3d/0x60\n ? handle_mm_fault+0x196/0x2f0\n ? do_user_addr_fault+0x267/0x890\n ? exc_page_fault+0x69/0x150\n entry_SYSCALL_64_after_hwframe+0x72/0xdc\nRIP: 0033:0x7f4800f20b4d", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: scsi: qedi: Fix crash while reading debugfs attribute", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40978" }, { "category": "external", "summary": "RHBZ#2297562", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297562" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40978", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40978" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40978", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40978" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071231-CVE-2024-40978-d135@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071231-CVE-2024-40978-d135@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.1, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: scsi: qedi: Fix crash while reading debugfs attribute" }, { "cve": "CVE-2024-41090", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "discovery_date": "2024-07-20T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2299240" } ], "notes": [ { "category": "description", "text": "A denial of service (DoS) attack was found in the mlx5 driver in the Linux kernel. A KVM guest VM using virtio-net can crash the host by sending a short packet, for example, size \u003c ETH_HLEN. The packet may traverse through vhost-net, macvtap, and vlan without any validation or drop. When this packet is presented to the mlx5 driver on the host side, the kernel panic happens since mlx5_core assumes the frame size is always \u003e= ETH_HLEN.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: virtio-net: tap: mlx5_core short frame denial of service", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41090" }, { "category": "external", "summary": "RHBZ#2299240", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2299240" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41090", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41090" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41090", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41090" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072916-CVE-2024-41090-9830@gregkh", "url": "https://lore.kernel.org/linux-cve-announce/2024072916-CVE-2024-41090-9830@gregkh" }, { "category": "external", "summary": "https://www.openwall.com/lists/oss-security/2024/07/24/4", "url": "https://www.openwall.com/lists/oss-security/2024/07/24/4" } ], "release_date": "2024-07-24T17:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.1, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "kernel: virtio-net: tap: mlx5_core short frame denial of service" }, { "cve": "CVE-2024-41091", "cwe": { "id": "CWE-20", "name": "Improper Input Validation" }, "discovery_date": "2024-07-20T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2299336" } ], "notes": [ { "category": "description", "text": "A denial of service (DoS) attack was found in the mlx5 driver in the Linux kernel. A KVM guest VM using virtio-net can crash the host by sending a short packet, for example, size \u003c ETH_HLEN. The packet may traverse through vhost-net, macvtap, and vlan without any validation or drop. When this packet is presented to the mlx5 driver on the host side, the kernel panic happens since mlx5_core assumes the frame size is always \u003e= ETH_HLEN.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: virtio-net: tun: mlx5_core short frame denial of service", "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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "known_not_affected": [ "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.112.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41091" }, { "category": "external", "summary": "RHBZ#2299336", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2299336" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41091", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41091" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41091", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41091" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072918-CVE-2024-41091-35b7@gregkh", "url": "https://lore.kernel.org/linux-cve-announce/2024072918-CVE-2024-41091-35b7@gregkh" }, { "category": "external", "summary": "https://www.openwall.com/lists/oss-security/2024/07/24/4", "url": "https://www.openwall.com/lists/oss-security/2024/07/24/4" } ], "release_date": "2024-07-24T17:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-08-13T10:08:33+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.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:5257" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.1, "baseSeverity": "HIGH", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "NONE", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.112.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.112.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.112.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "kernel: virtio-net: tun: mlx5_core short frame denial of service" } ] }
rhsa-2024_3855
Vulnerability from csaf_redhat
Published
2024-06-12 02:00
Modified
2024-11-06 06:09
Summary
Red Hat Security Advisory: kernel security update
Notes
Topic
An update for kernel is now available for Red Hat Enterprise Linux 9.2 Extended Update Support.
Red 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.
Details
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
* kernel: KVM: SVM: improper check in svm_set_x2apic_msr_interception allows direct access to host x2apic msrs (CVE-2023-5090)
* kernel: bluetooth: bt_sock_ioctl race condition leads to use-after-free in bt_sock_recvmsg (CVE-2023-51779)
* kernel: kvm: Avoid potential UAF in LPI translation cache (CVE-2024-26598)
* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)
* kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups (CVE-2023-52667)
For more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.
Terms of Use
This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.
{ "document": { "aggregate_severity": { "namespace": "https://access.redhat.com/security/updates/classification/", "text": "Moderate" }, "category": "csaf_security_advisory", "csaf_version": "2.0", "distribution": { "text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.", "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "en", "notes": [ { "category": "summary", "text": "An update for kernel is now available for Red Hat Enterprise Linux 9.2 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Moderate. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.", "title": "Topic" }, { "category": "general", "text": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: KVM: SVM: improper check in svm_set_x2apic_msr_interception allows direct access to host x2apic msrs (CVE-2023-5090)\n\n* kernel: bluetooth: bt_sock_ioctl race condition leads to use-after-free in bt_sock_recvmsg (CVE-2023-51779)\n\n* kernel: kvm: Avoid potential UAF in LPI translation cache (CVE-2024-26598)\n\n* kernel: KVM: s390: vsie: fix race during shadow creation (CVE-2023-52639)\n\n* kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups (CVE-2023-52667)\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-2024:3855", "url": "https://access.redhat.com/errata/RHSA-2024:3855" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#moderate", "url": "https://access.redhat.com/security/updates/classification/#moderate" }, { "category": "external", "summary": "2248122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2248122" }, { "category": "external", "summary": "2256822", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2256822" }, { "category": "external", "summary": "2265801", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2265801" }, { "category": "external", "summary": "2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "2281350", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281350" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_3855.json" } ], "title": "Red Hat Security Advisory: kernel security update", "tracking": { "current_release_date": "2024-11-06T06:09:15+00:00", "generator": { "date": "2024-11-06T06:09:15+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.1.1" } }, "id": "RHSA-2024:3855", "initial_release_date": "2024-06-12T02:00:48+00:00", "revision_history": [ { "date": "2024-06-12T02:00:48+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-06-12T02:00:48+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-06T06:09:15+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.2)", "product": { "name": "Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::appstream" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product": { "name": "Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/o:redhat:rhel_eus:9.2::baseos" } } }, { "category": "product_name", "name": "Red Hat CodeReady Linux Builder EUS (v.9.2)", "product": { "name": "Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_eus:9.2::crb" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "product_id": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "product": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "product_id": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.69.1.el9_2?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "product": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "product_id": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.69.1.el9_2?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "product_id": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "product": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "product_id": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.69.1.el9_2?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product_id": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.69.1.el9_2?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "product_id": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "product": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "product_id": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-284.69.1.el9_2?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "product": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "product_id": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.69.1.el9_2?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-cross-headers@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "product": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "product_id": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@7.0.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "perf-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "perf-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "perf-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/rtla@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "product": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "product_id": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@7.0.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-284.69.1.el9_2?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "product": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "product_id": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-284.69.1.el9_2?arch=s390x" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "product": { "name": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "product_id": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-284.69.1.el9_2?arch=noarch" } } }, { "category": "product_version", "name": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "product": { "name": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "product_id": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-284.69.1.el9_2?arch=noarch" } } } ], "category": "architecture", "name": "noarch" }, { "branches": [ { "category": "product_version", "name": "kernel-0:5.14.0-284.69.1.el9_2.src", "product": { "name": "kernel-0:5.14.0-284.69.1.el9_2.src", "product_id": "kernel-0:5.14.0-284.69.1.el9_2.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-284.69.1.el9_2?arch=src" } } } ], "category": "architecture", "name": "src" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.src", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.2)", "product_id": "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "AppStream-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.src", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.2)", "product_id": "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "BaseOS-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64" }, "product_reference": "bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.src", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch" }, "product_reference": "kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.aarch64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.s390x", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" }, { "category": "default_component_of", "full_product_name": { "name": "rtla-0:5.14.0-284.69.1.el9_2.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.2)", "product_id": "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" }, "product_reference": "rtla-0:5.14.0-284.69.1.el9_2.x86_64", "relates_to_product_reference": "CRB-9.2.0.Z.EUS" } ] }, "vulnerabilities": [ { "acknowledgments": [ { "names": [ "Maxim Levitsky" ], "organization": "Red Hat", "summary": "This issue was discovered by Red Hat." } ], "cve": "CVE-2023-5090", "cwe": { "id": "CWE-755", "name": "Improper Handling of Exceptional Conditions" }, "discovery_date": "2023-09-20T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2248122" } ], "notes": [ { "category": "description", "text": "A flaw was found in KVM. An improper check in svm_set_x2apic_msr_interception() may allow direct access to host x2apic msrs when the guest resets its apic, potentially leading to a denial of service condition.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: KVM: SVM: improper check in svm_set_x2apic_msr_interception allows direct access to host x2apic msrs", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Enterprise Linux 6 and 7 are not affected by this CVE as they did not include support for (de)activating x2AVIC mode, introduced upstream in kernel v6.0 with commit 4d1d794.", "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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-5090" }, { "category": "external", "summary": "RHBZ#2248122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2248122" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-5090", "url": "https://www.cve.org/CVERecord?id=CVE-2023-5090" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-5090", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-5090" } ], "release_date": "2023-09-28T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-06-12T02:00: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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:3855" }, { "category": "workaround", "details": "Mitigation for this issue is either not available or the currently available options do not 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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 6.0, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "HIGH", "scope": "CHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: KVM: SVM: improper check in svm_set_x2apic_msr_interception allows direct access to host x2apic msrs" }, { "cve": "CVE-2023-51779", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-01-04T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2256822" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Bluetooth subsystem of the Linux kernel. A race condition between the bt_sock_recvmsg() and bt_sock_ioctl() functions could lead to a use-after-free on a socket buffer (\"skb\"). This flaw allows a local user to cause a denial of service condition or potential code execution.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: bluetooth: bt_sock_ioctl race condition leads to use-after-free in bt_sock_recvmsg", "title": "Vulnerability summary" }, { "category": "other", "text": "This flaw has been rated as having a Moderate impact because it is believed to be difficult to exploit and it is not clear whether or not it could be used to achieve local privilege escalation.", "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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-51779" }, { "category": "external", "summary": "RHBZ#2256822", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2256822" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-51779", "url": "https://www.cve.org/CVERecord?id=CVE-2023-51779" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-51779", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-51779" }, { "category": "external", "summary": "https://github.com/torvalds/linux/commit/2e07e8348ea454615e268222ae3fc240421be768", "url": "https://github.com/torvalds/linux/commit/2e07e8348ea454615e268222ae3fc240421be768" } ], "release_date": "2023-12-25T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-06-12T02:00: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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:3855" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 7.0, "baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: bluetooth: bt_sock_ioctl race condition leads to use-after-free in bt_sock_recvmsg" }, { "cve": "CVE-2023-52639", "cwe": { "id": "CWE-362", "name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)" }, "discovery_date": "2024-04-03T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2273080" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: KVM: s390: vsie: fix race during shadow creation", "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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52639" }, { "category": "external", "summary": "RHBZ#2273080", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2273080" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52639", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52639" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024040335-CVE-2023-52639-5b67@gregkh/T" } ], "release_date": "2024-04-03T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-06-12T02:00: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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:3855" } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: KVM: s390: vsie: fix race during shadow creation" }, { "cve": "CVE-2023-52667", "cwe": { "id": "CWE-415", "name": "Double Free" }, "discovery_date": "2024-05-17T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2281350" } ], "notes": [ { "category": "description", "text": "A double-free flaw was found in the Linux kernel ConnectX-4 and Connect-IB cards in the Mellanox driver. This issue could allow a local user to crash the system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups", "title": "Vulnerability summary" }, { "category": "other", "text": "Red Hat Enterprise Linux 8 and 9 versions are affected.", "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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52667" }, { "category": "external", "summary": "RHBZ#2281350", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2281350" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52667", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52667" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52667", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52667" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024051728-CVE-2023-52667-649b@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024051728-CVE-2023-52667-649b@gregkh/T" } ], "release_date": "2024-05-17T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-06-12T02:00: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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:3855" }, { "category": "workaround", "details": "To mitigate this issue, prevent module mlx5_core from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.", "product_ids": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "HIGH", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 4.7, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/mlx5e: fix a potential double-free in fs_any_create_groups" }, { "cve": "CVE-2024-26598", "cwe": { "id": "CWE-416", "name": "Use After Free" }, "discovery_date": "2024-02-24T00:00:00+00:00", "flags": [ { "label": "vulnerable_code_not_present", "product_ids": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2265801" } ], "notes": [ { "category": "description", "text": "A flaw was found in the Linux kernel pertaining to a potential use-after-free (UAF) scenario in a system involving Logical Partitioning Interrupts (LPI) translation cache operations. Specifically, the issue arises when a cache hit occurs concurrently with an operation that invalidates the cache, such as a DISCARD ITS command. The root cause is traced to vgic_its_check_cache() not appropriately managing the reference count of the vgic_irq object. Upon returning from this function, the reference count of vgic_irq is not incremented. This issue can lead to the object being prematurely freed while still in use by other parts of the system, potentially resulting in undefined behavior or system instability.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: kvm: Avoid potential UAF in LPI translation cache", "title": "Vulnerability summary" }, { "category": "other", "text": "The vulnerability is assessed as having a Moderate severity due to its potential to cause system instability or undefined behavior under specific conditions. Specifically, the issue arises from concurrent operations involving the LPI translation cache and commands that invalidate this cache, such as DISCARD ITS commands. The root cause lies in vgic_its_check_cache() failing to increment the reference count of the vgic_irq object before releasing the lock. This oversight can lead to a use-after-free scenario where the object may be prematurely freed while still in use elsewhere in the system. As a consequence, if the object is accessed or modified after being freed, it can result in unpredictable behavior, crashes, or even security vulnerabilities if an attacker can control the timing of cache invalidation and subsequent accesses.", "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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "known_not_affected": [ "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-26598" }, { "category": "external", "summary": "RHBZ#2265801", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2265801" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-26598", "url": "https://www.cve.org/CVERecord?id=CVE-2024-26598" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-26598", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-26598" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024022338-CVE-2024-26598-24f4@gregkh/T/#u", "url": "https://lore.kernel.org/linux-cve-announce/2024022338-CVE-2024-26598-24f4@gregkh/T/#u" } ], "release_date": "2024-02-23T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-06-12T02:00: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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:3855" }, { "category": "workaround", "details": "No mitigation is currently available for this vulnerability. Make sure to perform the updates as they become available.", "product_ids": [ "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-cross-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-doc-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-headers-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.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.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "AppStream-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "AppStream-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "BaseOS-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "BaseOS-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:bpftool-debuginfo-0:7.0.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.src", "CRB-9.2.0.Z.EUS:kernel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-64k-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-64k-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-abi-stablelists-0:5.14.0-284.69.1.el9_2.noarch", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debug-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debug-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-s390x-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-devel-matched-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-core-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-modules-extra-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-tools-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:kernel-tools-libs-devel-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-uki-virt-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-core-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:python3-perf-debuginfo-0:5.14.0-284.69.1.el9_2.x86_64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.aarch64", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.ppc64le", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.s390x", "CRB-9.2.0.Z.EUS:rtla-0:5.14.0-284.69.1.el9_2.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: kvm: Avoid potential UAF in LPI translation cache" } ] }
gsd-2023-52639
Vulnerability from gsd
Modified
2024-03-07 06:01
Details
In the Linux kernel, the following vulnerability has been resolved:
KVM: s390: vsie: fix race during shadow creation
Right now it is possible to see gmap->private being zero in
kvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the
fact that we add gmap->private == kvm after creation:
static int acquire_gmap_shadow(struct kvm_vcpu *vcpu,
struct vsie_page *vsie_page)
{
[...]
gmap = gmap_shadow(vcpu->arch.gmap, asce, edat);
if (IS_ERR(gmap))
return PTR_ERR(gmap);
gmap->private = vcpu->kvm;
Let children inherit the private field of the parent.
Aliases
{ "gsd": { "metadata": { "exploitCode": "unknown", "remediation": "unknown", "reportConfidence": "confirmed", "type": "vulnerability" }, "osvSchema": { "aliases": [ "CVE-2023-52639" ], "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent.", "id": "GSD-2023-52639", "modified": "2024-03-07T06:01:45.344082Z", "schema_version": "1.4.0" } }, "namespaces": { "cve.org": { "CVE_data_meta": { "ASSIGNER": "cve@kernel.org", "ID": "CVE-2023-52639", "STATE": "PUBLIC" }, "affects": { "vendor": { "vendor_data": [ { "product": { "product_data": [ { "product_name": "Linux", "version": { "version_data": [ { "version_affected": "\u003c", "version_name": "a3508fbe9dc6", "version_value": "5df3b81a567e" }, { "version_value": "not down converted", "x_cve_json_5_version_data": { "defaultStatus": "affected", "versions": [ { "status": "affected", "version": "4.8" }, { "lessThan": "4.8", "status": "unaffected", "version": "0", "versionType": "custom" }, { "lessThanOrEqual": "6.1.*", "status": "unaffected", "version": "6.1.82", "versionType": "custom" }, { "lessThanOrEqual": "6.6.*", "status": "unaffected", "version": "6.6.22", "versionType": "custom" }, { "lessThanOrEqual": "6.7.*", "status": "unaffected", "version": "6.7.6", "versionType": "custom" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "6.8", "versionType": "original_commit_for_fix" } ] } } ] } } ] }, "vendor_name": "Linux" } ] } }, "data_format": "MITRE", "data_type": "CVE", "data_version": "4.0", "description": { "description_data": [ { "lang": "eng", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent." } ] }, "generator": { "engine": "bippy-d3b290d2becc" }, "problemtype": { "problemtype_data": [ { "description": [ { "lang": "eng", "value": "n/a" } ] } ] }, "references": { "reference_data": [ { "name": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc", "refsource": "MISC", "url": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc" }, { "name": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380", "refsource": "MISC", "url": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380" }, { "name": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082", "refsource": "MISC", "url": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082" }, { "name": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32", "refsource": "MISC", "url": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32" } ] } }, "nvd.nist.gov": { "cve": { "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent." } ], "id": "CVE-2023-52639", "lastModified": "2024-04-03T17:24:18.150", "metrics": {}, "published": "2024-04-03T15:15:51.467", "references": [ { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082" }, { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc" }, { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380" }, { "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "url": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32" } ], "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "vulnStatus": "Awaiting Analysis" } } } }
ghsa-82mq-c3x3-cpp9
Vulnerability from github
Published
2024-04-03 15:30
Modified
2024-04-03 15:30
Details
In the Linux kernel, the following vulnerability has been resolved:
KVM: s390: vsie: fix race during shadow creation
Right now it is possible to see gmap->private being zero in kvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the fact that we add gmap->private == kvm after creation:
static int acquire_gmap_shadow(struct kvm_vcpu vcpu, struct vsie_page vsie_page) { [...] gmap = gmap_shadow(vcpu->arch.gmap, asce, edat); if (IS_ERR(gmap)) return PTR_ERR(gmap); gmap->private = vcpu->kvm;
Let children inherit the private field of the parent.
{ "affected": [], "aliases": [ "CVE-2023-52639" ], "database_specific": { "cwe_ids": [], "github_reviewed": false, "github_reviewed_at": null, "nvd_published_at": "2024-04-03T15:15:51Z", "severity": null }, "details": "In the Linux kernel, the following vulnerability has been resolved:\n\nKVM: s390: vsie: fix race during shadow creation\n\nRight now it is possible to see gmap-\u003eprivate being zero in\nkvm_s390_vsie_gmap_notifier resulting in a crash. This is due to the\nfact that we add gmap-\u003eprivate == kvm after creation:\n\nstatic int acquire_gmap_shadow(struct kvm_vcpu *vcpu,\n struct vsie_page *vsie_page)\n{\n[...]\n gmap = gmap_shadow(vcpu-\u003earch.gmap, asce, edat);\n if (IS_ERR(gmap))\n return PTR_ERR(gmap);\n gmap-\u003eprivate = vcpu-\u003ekvm;\n\nLet children inherit the private field of the parent.", "id": "GHSA-82mq-c3x3-cpp9", "modified": "2024-04-03T15:30:42Z", "published": "2024-04-03T15:30:42Z", "references": [ { "type": "ADVISORY", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52639" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/28bb27824f25f36e5f80229a358d66ee09244082" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/5df3b81a567eb565029563f26f374ae3803a1dfc" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/f5572c0323cf8b4f1f0618178648a25b8fb8a380" }, { "type": "WEB", "url": "https://git.kernel.org/stable/c/fe752331d4b361d43cfd0b89534b4b2176057c32" } ], "schema_version": "1.4.0", "severity": [] }
Loading...
Loading...
- Seen: The vulnerability was mentioned, discussed, or seen somewhere by the user.
- Confirmed: The vulnerability is confirmed from an analyst perspective.
- Exploited: This vulnerability was exploited and seen by the user reporting the sighting.
- Patched: This vulnerability was successfully patched by the user reporting the sighting.
- Not exploited: This vulnerability was not exploited or seen by the user reporting the sighting.
- Not confirmed: The user expresses doubt about the veracity of the vulnerability.
- Not patched: This vulnerability was not successfully patched by the user reporting the sighting.