Action not permitted
Modal body text goes here.
cve-2021-47559
Vulnerability from cvelistv5
Published
2024-05-24 15:12
Modified
2024-11-04 12:08
Severity ?
EPSS score ?
Summary
net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()
References
{ "containers": { "adp": [ { "metrics": [ { "other": { "content": { "id": "CVE-2021-47559", "options": [ { "Exploitation": "none" }, { "Automatable": "no" }, { "Technical Impact": "partial" } ], "role": "CISA Coordinator", "timestamp": "2024-05-24T19:14:31.432418Z", "version": "2.0.3" }, "type": "ssvc" } } ], "providerMetadata": { "dateUpdated": "2024-06-04T17:14:40.808Z", "orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "shortName": "CISA-ADP" }, "title": "CISA ADP Vulnrichment" }, { "providerMetadata": { "dateUpdated": "2024-08-04T05:39:59.699Z", "orgId": "af854a3a-2127-422b-91ae-364da2661108", "shortName": "CVE" }, "references": [ { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/c94cbd262b6aa3b54d73a1ed1f9c0d19df57f4ff" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/bb851d0fb02547d03cd40106b5f2391c4fed6ed1" }, { "tags": [ "x_transferred" ], "url": "https://git.kernel.org/stable/c/587acad41f1bc48e16f42bb2aca63bf323380be8" } ], "title": "CVE Program Container" } ], "cna": { "affected": [ { "defaultStatus": "unaffected", "product": "Linux", "programFiles": [ "net/smc/smc_core.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "lessThan": "c94cbd262b6a", "status": "affected", "version": "cb9d43f67754", "versionType": "git" }, { "lessThan": "bb851d0fb025", "status": "affected", "version": "cb9d43f67754", "versionType": "git" }, { "lessThan": "587acad41f1b", "status": "affected", "version": "cb9d43f67754", "versionType": "git" } ] }, { "defaultStatus": "affected", "product": "Linux", "programFiles": [ "net/smc/smc_core.c" ], "repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git", "vendor": "Linux", "versions": [ { "status": "affected", "version": "4.18" }, { "lessThan": "4.18", "status": "unaffected", "version": "0", "versionType": "semver" }, { "lessThanOrEqual": "5.10.*", "status": "unaffected", "version": "5.10.83", "versionType": "semver" }, { "lessThanOrEqual": "5.15.*", "status": "unaffected", "version": "5.15.6", "versionType": "semver" }, { "lessThanOrEqual": "*", "status": "unaffected", "version": "5.16", "versionType": "original_commit_for_fix" } ] } ], "descriptions": [ { "lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()\n\nCoverity reports a possible NULL dereferencing problem:\n\nin smc_vlan_by_tcpsk():\n6. returned_null: netdev_lower_get_next returns NULL (checked 29 out of 30 times).\n7. var_assigned: Assigning: ndev = NULL return value from netdev_lower_get_next.\n1623 ndev = (struct net_device *)netdev_lower_get_next(ndev, \u0026lower);\nCID 1468509 (#1 of 1): Dereference null return value (NULL_RETURNS)\n8. dereference: Dereferencing a pointer that might be NULL ndev when calling is_vlan_dev.\n1624 if (is_vlan_dev(ndev)) {\n\nRemove the manual implementation and use netdev_walk_all_lower_dev() to\niterate over the lower devices. While on it remove an obsolete function\nparameter comment." } ], "providerMetadata": { "dateUpdated": "2024-11-04T12:08:13.283Z", "orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "shortName": "Linux" }, "references": [ { "url": "https://git.kernel.org/stable/c/c94cbd262b6aa3b54d73a1ed1f9c0d19df57f4ff" }, { "url": "https://git.kernel.org/stable/c/bb851d0fb02547d03cd40106b5f2391c4fed6ed1" }, { "url": "https://git.kernel.org/stable/c/587acad41f1bc48e16f42bb2aca63bf323380be8" } ], "title": "net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()", "x_generator": { "engine": "bippy-9e1c9544281a" } } }, "cveMetadata": { "assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "assignerShortName": "Linux", "cveId": "CVE-2021-47559", "datePublished": "2024-05-24T15:12:48.675Z", "dateReserved": "2024-05-24T15:11:00.727Z", "dateUpdated": "2024-11-04T12:08:13.283Z", "state": "PUBLISHED" }, "dataType": "CVE_RECORD", "dataVersion": "5.1", "meta": { "nvd": "{\"cve\":{\"id\":\"CVE-2021-47559\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2024-05-24T15:15:20.537\",\"lastModified\":\"2024-06-10T19:22:53.997\",\"vulnStatus\":\"Analyzed\",\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nnet/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()\\n\\nCoverity reports a possible NULL dereferencing problem:\\n\\nin smc_vlan_by_tcpsk():\\n6. returned_null: netdev_lower_get_next returns NULL (checked 29 out of 30 times).\\n7. var_assigned: Assigning: ndev = NULL return value from netdev_lower_get_next.\\n1623 ndev = (struct net_device *)netdev_lower_get_next(ndev, \u0026lower);\\nCID 1468509 (#1 of 1): Dereference null return value (NULL_RETURNS)\\n8. dereference: Dereferencing a pointer that might be NULL ndev when calling is_vlan_dev.\\n1624 if (is_vlan_dev(ndev)) {\\n\\nRemove the manual implementation and use netdev_walk_all_lower_dev() to\\niterate over the lower devices. While on it remove an obsolete function\\nparameter comment.\"},{\"lang\":\"es\",\"value\":\"En el kernel de Linux, se ha resuelto la siguiente vulnerabilidad: net/smc: corrige la desreferenciaci\u00f3n del puntero NULL en smc_vlan_by_tcpsk() Coverity informa un posible problema de desreferenciaci\u00f3n de NULL: en smc_vlan_by_tcpsk(): 6. return_null: netdev_lower_get_next devuelve NULL (comprobado 29 de 30 veces). 7. var_assigned: Asignaci\u00f3n: ndev = valor de retorno NULL de netdev_lower_get_next. 1623 ndev = (struct net_device *)netdev_lower_get_next(ndev, \u0026amp;lower); CID 1468509 (#1 de 1): Desreferenciar valor de retorno nulo (NULL_RETURNS) 8. desreferencia: Desreferenciar un puntero que podr\u00eda ser NULL ndev al llamar a is_vlan_dev. 1624 if (is_vlan_dev(ndev)) { Elimine la implementaci\u00f3n manual y use netdev_walk_all_lower_dev() para iterar sobre los dispositivos inferiores. Mientras est\u00e9 en \u00e9l, elimine un comentario de par\u00e1metro de funci\u00f3n obsoleto.\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-476\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.18\",\"versionEndExcluding\":\"5.10.83\",\"matchCriteriaId\":\"835BC6F8-85B4-4718-9DE2-261C7D68F1B4\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.11\",\"versionEndExcluding\":\"5.15.6\",\"matchCriteriaId\":\"990C08FB-0121-4296-896F-556312F8FF3B\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/587acad41f1bc48e16f42bb2aca63bf323380be8\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/bb851d0fb02547d03cd40106b5f2391c4fed6ed1\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/c94cbd262b6aa3b54d73a1ed1f9c0d19df57f4ff\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}" } }
rhsa-2024_6990
Vulnerability from csaf_redhat
Published
2024-09-24 00:27
Modified
2024-11-15 18:42
Summary
Red Hat Security Advisory: kernel-rt security update
Notes
Topic
An update for kernel-rt 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-rt packages provide the Real Time Linux Kernel, which enables fine-tuning for systems with extremely high determinism requirements.
Security Fix(es):
* kernel: mm/sparsemem: fix race in accessing memory_section->usage (CVE-2023-52489)
* kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs (CVE-2021-47393)
* kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() (CVE-2021-47559)
* kernel: ACPICA: Revert "ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine." (CVE-2024-40984)
* kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() (CVE-2024-40995)
* kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create (CVE-2022-48773)
* kernel: vsock: remove vsock from connected table when connect is interrupted by a signal (CVE-2022-48786)
* kernel: perf: Fix list corruption in perf_cgroup_switch() (CVE-2022-48799)
* kernel: SUNRPC: lock against ->sock changing during sysfs read (CVE-2022-48816)
* kernel: mm: prevent derefencing NULL ptr in pfn_section_valid() (CVE-2024-41055)
* kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing (CVE-2024-41071)
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": "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-rt 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-rt packages provide the Real Time Linux Kernel, which enables fine-tuning for systems with extremely high determinism requirements.\n\nSecurity Fix(es):\n\n* kernel: mm/sparsemem: fix race in accessing memory_section-\u003eusage (CVE-2023-52489)\n\n* kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs (CVE-2021-47393)\n\n* kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() (CVE-2021-47559)\n\n* kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34; (CVE-2024-40984)\n\n* kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() (CVE-2024-40995)\n\n* kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create (CVE-2022-48773)\n\n* kernel: vsock: remove vsock from connected table when connect is interrupted by a signal (CVE-2022-48786)\n\n* kernel: perf: Fix list corruption in perf_cgroup_switch() (CVE-2022-48799)\n\n* kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read (CVE-2022-48816)\n\n* kernel: mm: prevent derefencing NULL ptr in pfn_section_valid() (CVE-2024-41055)\n\n* kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing (CVE-2024-41071)\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:6990", "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#important", "url": "https://access.redhat.com/security/updates/classification/#important" }, { "category": "external", "summary": "2269189", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2269189" }, { "category": "external", "summary": "2282345", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282345" }, { "category": "external", "summary": "2283390", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283390" }, { "category": "external", "summary": "2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "2297579", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297579" }, { "category": "external", "summary": "2298109", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298109" }, { "category": "external", "summary": "2298122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298122" }, { "category": "external", "summary": "2298135", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298135" }, { "category": "external", "summary": "2298155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298155" }, { "category": "external", "summary": "2300429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300429" }, { "category": "external", "summary": "2300448", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300448" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_6990.json" } ], "title": "Red Hat Security Advisory: kernel-rt security update", "tracking": { "current_release_date": "2024-11-15T18:42:35+00:00", "generator": { "date": "2024-11-15T18:42:35+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.2.1" } }, "id": "RHSA-2024:6990", "initial_release_date": "2024-09-24T00:27:36+00:00", "revision_history": [ { "date": "2024-09-24T00:27:36+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-09-24T00:27:36+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-15T18:42:35+00:00", "number": "3", "summary": "Last generated version" } ], "status": "final", "version": "3" } }, "product_tree": { "branches": [ { "branches": [ { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux NFV E4S (v.9.0)", "product": { "name": "Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_e4s:9.0::nfv" } } }, { "category": "product_name", "name": "Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product": { "name": "Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S", "product_identification_helper": { "cpe": "cpe:/a:redhat:rhel_e4s:9.0::realtime" } } } ], "category": "product_family", "name": "Red Hat Enterprise Linux" }, { "branches": [ { "category": "product_version", "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "product": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "product_id": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-70.117.1.rt21.189.el9_0?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-kvm@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-kvm@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_id": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-rt-debuginfo-common-x86_64@5.14.0-70.117.1.rt21.189.el9_0?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" } ], "category": "vendor", "name": "Red Hat" } ], "relationships": [ { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src" }, "product_reference": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux NFV E4S (v.9.0)", "product_id": "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "NFV-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src" }, "product_reference": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" }, { "category": "default_component_of", "full_product_name": { "name": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64 as a component of Red Hat Enterprise Linux Real Time E4S (v.9.0)", "product_id": "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" }, "product_reference": "kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "relates_to_product_reference": "RT-9.0.0.Z.E4S" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-47393", "cwe": { "id": "CWE-754", "name": "Improper Check for Unusual or Exceptional Conditions" }, "discovery_date": "2024-05-21T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2282345" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nhwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs\n\nFan speed minimum can be enforced from sysfs. For example, setting\ncurrent fan speed to 20 is used to enforce fan speed to be at 100%\nspeed, 19 - to be not below 90% speed, etcetera. This feature provides\nability to limit fan speed according to some system wise\nconsiderations, like absence of some replaceable units or high system\nambient temperature.\n\nRequest for changing fan minimum speed is configuration request and can\nbe set only through \u0027sysfs\u0027 write procedure. In this situation value of\nargument \u0027state\u0027 is above nominal fan speed maximum.\n\nReturn non-zero code in this case to avoid\nthermal_cooling_device_stats_update() call, because in this case\nstatistics update violates thermal statistics table range.\nThe issues is observed in case kernel is configured with option\nCONFIG_THERMAL_STATISTICS.\n\nHere is the trace from KASAN:\n[ 159.506659] BUG: KASAN: slab-out-of-bounds in thermal_cooling_device_stats_update+0x7d/0xb0\n[ 159.516016] Read of size 4 at addr ffff888116163840 by task hw-management.s/7444\n[ 159.545625] Call Trace:\n[ 159.548366] dump_stack+0x92/0xc1\n[ 159.552084] ? thermal_cooling_device_stats_update+0x7d/0xb0\n[ 159.635869] thermal_zone_device_update+0x345/0x780\n[ 159.688711] thermal_zone_device_set_mode+0x7d/0xc0\n[ 159.694174] mlxsw_thermal_modules_init+0x48f/0x590 [mlxsw_core]\n[ 159.700972] ? mlxsw_thermal_set_cur_state+0x5a0/0x5a0 [mlxsw_core]\n[ 159.731827] mlxsw_thermal_init+0x763/0x880 [mlxsw_core]\n[ 160.070233] RIP: 0033:0x7fd995909970\n[ 160.074239] Code: 73 01 c3 48 8b 0d 28 d5 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 83 3d 99 2d 2c 00 00 75 10 b8 01 00 00 00 0f 05 \u003c48\u003e 3d 01 f0 ff ..\n[ 160.095242] RSP: 002b:00007fff54f5d938 EFLAGS: 00000246 ORIG_RAX: 0000000000000001\n[ 160.103722] RAX: ffffffffffffffda RBX: 0000000000000013 RCX: 00007fd995909970\n[ 160.111710] RDX: 0000000000000013 RSI: 0000000001906008 RDI: 0000000000000001\n[ 160.119699] RBP: 0000000001906008 R08: 00007fd995bc9760 R09: 00007fd996210700\n[ 160.127687] R10: 0000000000000073 R11: 0000000000000246 R12: 0000000000000013\n[ 160.135673] R13: 0000000000000001 R14: 00007fd995bc8600 R15: 0000000000000013\n[ 160.143671]\n[ 160.145338] Allocated by task 2924:\n[ 160.149242] kasan_save_stack+0x19/0x40\n[ 160.153541] __kasan_kmalloc+0x7f/0xa0\n[ 160.157743] __kmalloc+0x1a2/0x2b0\n[ 160.161552] thermal_cooling_device_setup_sysfs+0xf9/0x1a0\n[ 160.167687] __thermal_cooling_device_register+0x1b5/0x500\n[ 160.173833] devm_thermal_of_cooling_device_register+0x60/0xa0\n[ 160.180356] mlxreg_fan_probe+0x474/0x5e0 [mlxreg_fan]\n[ 160.248140]\n[ 160.249807] The buggy address belongs to the object at ffff888116163400\n[ 160.249807] which belongs to the cache kmalloc-1k of size 1024\n[ 160.263814] The buggy address is located 64 bytes to the right of\n[ 160.263814] 1024-byte region [ffff888116163400, ffff888116163800)\n[ 160.277536] The buggy address belongs to the page:\n[ 160.282898] page:0000000012275840 refcount:1 mapcount:0 mapping:0000000000000000 index:0xffff888116167000 pfn:0x116160\n[ 160.294872] head:0000000012275840 order:3 compound_mapcount:0 compound_pincount:0\n[ 160.303251] flags: 0x200000000010200(slab|head|node=0|zone=2)\n[ 160.309694] raw: 0200000000010200 ffffea00046f7208 ffffea0004928208 ffff88810004dbc0\n[ 160.318367] raw: ffff888116167000 00000000000a0006 00000001ffffffff 0000000000000000\n[ 160.327033] page dumped because: kasan: bad access detected\n[ 160.333270]\n[ 160.334937] Memory state around the buggy address:\n[ 160.356469] \u003effff888116163800: fc ..", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability is rated as a moderate severity because it can disrupt system operation by causing crashes or unpredictable behaviour under specific 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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47393" }, { "category": "external", "summary": "RHBZ#2282345", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282345" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47393", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47393" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47393", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47393" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052147-CVE-2021-47393-ea1c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052147-CVE-2021-47393-ea1c@gregkh/T" } ], "release_date": "2024-05-21T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs" }, { "cve": "CVE-2021-47559", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-05-24T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283390" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel\u0027s SMC implementation in the smc_vlan_by_tcpsk() function. A potential NULL pointer dereference occurred when handling lower network devices, leading to system crashes and resulting in denial of service.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47559" }, { "category": "external", "summary": "RHBZ#2283390", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283390" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47559", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47559" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47559", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47559" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47559-9909@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47559-9909@gregkh/T" } ], "release_date": "2024-05-24T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()" }, { "cve": "CVE-2022-48773", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298109" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nxprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create\n\nIf there are failures then we must not leave the non-NULL pointers with\nthe error value, otherwise `rpcrdma_ep_destroy` gets confused and tries\nfree them, resulting in an Oops.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48773" }, { "category": "external", "summary": "RHBZ#2298109", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298109" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48773", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48773" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48773", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48773" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071628-CVE-2022-48773-9563@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071628-CVE-2022-48773-9563@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create" }, { "cve": "CVE-2022-48786", "cwe": { "id": "CWE-371", "name": "CWE-371" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298122" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nvsock: remove vsock from connected table when connect is interrupted by a signal\n\nvsock_connect() expects that the socket could already be in the\nTCP_ESTABLISHED state when the connecting task wakes up with a signal\npending. If this happens the socket will be in the connected table, and\nit is not removed when the socket state is reset. In this situation it\u0027s\ncommon for the process to retry connect(), and if the connection is\nsuccessful the socket will be added to the connected table a second\ntime, corrupting the list.\n\nPrevent this by calling vsock_remove_connected() if a signal is received\nwhile waiting for a connection. This is harmless if the socket is not in\nthe connected table, and if it is in the table then removing it will\nprevent list corruption from a double add.\n\nNote for backporting: this patch requires d5afa82c977e (\"vsock: correct\nremoval of socket from the list\"), which is in all current stable trees\nexcept 4.9.y.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: vsock: remove vsock from connected table when connect is interrupted by a signal", "title": "Vulnerability summary" }, { "category": "other", "text": "This issue is fixed in RHEL-9.1 and above\n~~~\nin (rhel-8.7, rhel-8.8, rhel-8.9, rhel-8.10) vsock: remove vsock from connected table when connect is interrupted by a signal\nin (rhel-9.1, rhel-9.2, rhel-9.3, rhel-9.4, rhel-9.5) vsock: remove vsock from connected table when connect is interrupted by a signal\n~~~\n\nPlease note that while RHEL-9 kernel-rt still appears as affected, it has been fixed in the same RHSA as RHEL-9 kernel. This is because from RHEL-9.3 onwards, the kernel and kernel-rt fixes are bundled together in a single errata.", "title": "Statement" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48786" }, { "category": "external", "summary": "RHBZ#2298122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298122" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48786", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48786" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48786", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48786" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071637-CVE-2022-48786-7416@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071637-CVE-2022-48786-7416@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "LOW", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: vsock: remove vsock from connected table when connect is interrupted by a signal" }, { "cve": "CVE-2022-48799", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298135" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nperf: Fix list corruption in perf_cgroup_switch()\n\nThere\u0027s list corruption on cgrp_cpuctx_list. This happens on the\nfollowing path:\n\n perf_cgroup_switch: list_for_each_entry(cgrp_cpuctx_list)\n cpu_ctx_sched_in\n ctx_sched_in\n ctx_pinned_sched_in\n merge_sched_in\n perf_cgroup_event_disable: remove the event from the list\n\nUse list_for_each_entry_safe() to allow removing an entry during\niteration.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: perf: Fix list corruption in perf_cgroup_switch()", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48799" }, { "category": "external", "summary": "RHBZ#2298135", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298135" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48799", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48799" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48799", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48799" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071643-CVE-2022-48799-9594@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071643-CVE-2022-48799-9594@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: perf: Fix list corruption in perf_cgroup_switch()" }, { "cve": "CVE-2022-48816", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298155" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nSUNRPC: lock against -\u003esock changing during sysfs read\n\n-\u003esock can be set to NULL asynchronously unless -\u003erecv_mutex is held.\nSo it is important to hold that mutex. Otherwise a sysfs read can\ntrigger an oops.\nCommit 17f09d3f619a (\"SUNRPC: Check if the xprt is connected before\nhandling sysfs reads\") appears to attempt to fix this problem, but it\nonly narrows the race window.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48816" }, { "category": "external", "summary": "RHBZ#2298155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298155" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48816", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48816" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48816", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48816" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071648-CVE-2022-48816-e2a3@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071648-CVE-2022-48816-e2a3@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read" }, { "cve": "CVE-2023-52489", "cwe": { "id": "CWE-362", "name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)" }, "discovery_date": "2024-02-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2269189" } ], "notes": [ { "category": "description", "text": "A race condition was found on a PFN in the Linux Kernel, which can fall into the device memory region with the system memory configuration. Normal zone start and end PFNs contain the device memory PFNs as well, and the compaction triggered will try on the device memory PFNs and end up in NOP. This may lead to compromised Availability.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/sparsemem: fix race in accessing memory_section-\u003eusage", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52489" }, { "category": "external", "summary": "RHBZ#2269189", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2269189" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52489", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52489" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52489", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52489" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/20240229155245.1571576-30-lee@kernel.org/T", "url": "https://lore.kernel.org/linux-cve-announce/20240229155245.1571576-30-lee@kernel.org/T" } ], "release_date": "2024-02-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/sparsemem: fix race in accessing memory_section-\u003eusage" }, { "cve": "CVE-2024-40984", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-12T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297568" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nACPICA: Revert \"ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\"\n\nUndo the modifications made in commit d410ee5109a1 (\"ACPICA: avoid\n\"Info: mapping multiple BARs. Your kernel is fine.\"\"). The initial\npurpose of this commit was to stop memory mappings for operation\nregions from overlapping page boundaries, as it can trigger warnings\nif different page attributes are present.\n\nHowever, it was found that when this situation arises, mapping\ncontinues until the boundary\u0027s end, but there is still an attempt to\nread/write the entire length of the map, leading to a NULL pointer\ndeference. For example, if a four-byte mapping request is made but\nonly one byte is mapped because it hits the current page boundary\u0027s\nend, a four-byte read/write attempt is still made, resulting in a NULL\npointer deference.\n\nInstead, map the entire length, as the ACPI specification does not\nmandate that it must be within the same page boundary. It is\npermissible for it to be mapped across different regions.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40984" }, { "category": "external", "summary": "RHBZ#2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40984" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;" }, { "cve": "CVE-2024-40995", "cwe": { "id": "CWE-833", "name": "Deadlock" }, "discovery_date": "2024-07-12T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297579" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()\n\nsyzbot found hanging tasks waiting on rtnl_lock [1]\n\nA reproducer is available in the syzbot bug.\n\nWhen a request to add multiple actions with the same index is sent, the\nsecond request will block forever on the first request. This holds\nrtnl_lock, and causes tasks to hang.\n\nReturn -EAGAIN to prevent infinite looping, while keeping documented\nbehavior.\n\n[1]\n\nINFO: task kworker/1:0:5088 blocked for more than 143 seconds.\nNot tainted 6.9.0-rc4-syzkaller-00173-g3cdb45594619 #0\n\"echo 0 \u003e /proc/sys/kernel/hung_task_timeout_secs\" disables this message.\ntask:kworker/1:0 state:D stack:23744 pid:5088 tgid:5088 ppid:2 flags:0x00004000\nWorkqueue: events_power_efficient reg_check_chans_work\nCall Trace:\n\u003cTASK\u003e\ncontext_switch kernel/sched/core.c:5409 [inline]\n__schedule+0xf15/0x5d00 kernel/sched/core.c:6746\n__schedule_loop kernel/sched/core.c:6823 [inline]\nschedule+0xe7/0x350 kernel/sched/core.c:6838\nschedule_preempt_disabled+0x13/0x30 kernel/sched/core.c:6895\n__mutex_lock_common kernel/locking/mutex.c:684 [inline]\n__mutex_lock+0x5b8/0x9c0 kernel/locking/mutex.c:752\nwiphy_lock include/net/cfg80211.h:5953 [inline]\nreg_leave_invalid_chans net/wireless/reg.c:2466 [inline]\nreg_check_chans_work+0x10a/0x10e0 net/wireless/reg.c:2481", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40995" }, { "category": "external", "summary": "RHBZ#2297579", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297579" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40995", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40995" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40995", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40995" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071251-CVE-2024-40995-2a5c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071251-CVE-2024-40995-2a5c@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()" }, { "cve": "CVE-2024-41055", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300429" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm: prevent derefencing NULL ptr in pfn_section_valid()\n\nCommit 5ec8e8ea8b77 (\"mm/sparsemem: fix race in accessing\nmemory_section-\u003eusage\") changed pfn_section_valid() to add a READ_ONCE()\ncall around \"ms-\u003eusage\" to fix a race with section_deactivate() where\nms-\u003eusage can be cleared. The READ_ONCE() call, by itself, is not enough\nto prevent NULL pointer dereference. We need to check its value before\ndereferencing it.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm: prevent derefencing NULL ptr in pfn_section_valid()", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41055" }, { "category": "external", "summary": "RHBZ#2300429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300429" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41055" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41055", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41055" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072928-CVE-2024-41055-5764@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072928-CVE-2024-41055-5764@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm: prevent derefencing NULL ptr in pfn_section_valid()" }, { "cve": "CVE-2024-41071", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300448" } ], "notes": [ { "category": "description", "text": "An out-of-bounds buffer overflow has been found in the Linux kernel\u2019s mac80211 subsystem when scanning for SSIDs. Address calculation using out-of-bounds array indexing could result in an attacker crafting an exploit, resulting in the complete compromise of a system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing", "title": "Vulnerability summary" }, { "category": "general", "text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.", "title": "CVSS score applicability" } ], "product_status": { "fixed": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41071" }, { "category": "external", "summary": "RHBZ#2300448", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300448" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41071", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41071" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41071", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41071" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072909-CVE-2024-41071-4eb6@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072909-CVE-2024-41071-4eb6@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:27:36+00:00", "details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ], "restart_required": { "category": "none" }, "url": "https://access.redhat.com/errata/RHSA-2024:6990" }, { "category": "workaround", "details": "There are no mitigations for the flaw. Please update your system for fixes.", "product_ids": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.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": [ "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "NFV-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "NFV-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.src", "RT-9.0.0.Z.E4S:kernel-rt-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-core-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debug-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-debuginfo-common-x86_64-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-devel-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-kvm-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64", "RT-9.0.0.Z.E4S:kernel-rt-modules-extra-0:5.14.0-70.117.1.rt21.189.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing" } ] }
rhsa-2024_6991
Vulnerability from csaf_redhat
Published
2024-09-24 00:49
Modified
2024-11-15 18:42
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: mm/sparsemem: fix race in accessing memory_section->usage (CVE-2023-52489)
* kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs (CVE-2021-47393)
* kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() (CVE-2021-47559)
* kernel: ACPICA: Revert "ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine." (CVE-2024-40984)
* kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() (CVE-2024-40995)
* kernel: powerpc/fixmap: Fix VM debug warning on unmap (CVE-2021-47623)
* kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create (CVE-2022-48773)
* kernel: vsock: remove vsock from connected table when connect is interrupted by a signal (CVE-2022-48786)
* kernel: perf: Fix list corruption in perf_cgroup_switch() (CVE-2022-48799)
* kernel: SUNRPC: lock against ->sock changing during sysfs read (CVE-2022-48816)
* kernel: mm: prevent derefencing NULL ptr in pfn_section_valid() (CVE-2024-41055)
* kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing (CVE-2024-41071)
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": "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: mm/sparsemem: fix race in accessing memory_section-\u003eusage (CVE-2023-52489)\n\n* kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs (CVE-2021-47393)\n\n* kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk() (CVE-2021-47559)\n\n* kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34; (CVE-2024-40984)\n\n* kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc() (CVE-2024-40995)\n\n* kernel: powerpc/fixmap: Fix VM debug warning on unmap (CVE-2021-47623)\n\n* kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create (CVE-2022-48773)\n\n* kernel: vsock: remove vsock from connected table when connect is interrupted by a signal (CVE-2022-48786)\n\n* kernel: perf: Fix list corruption in perf_cgroup_switch() (CVE-2022-48799)\n\n* kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read (CVE-2022-48816)\n\n* kernel: mm: prevent derefencing NULL ptr in pfn_section_valid() (CVE-2024-41055)\n\n* kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing (CVE-2024-41071)\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:6991", "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "category": "external", "summary": "https://access.redhat.com/security/updates/classification/#important", "url": "https://access.redhat.com/security/updates/classification/#important" }, { "category": "external", "summary": "2269189", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2269189" }, { "category": "external", "summary": "2282345", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282345" }, { "category": "external", "summary": "2283390", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283390" }, { "category": "external", "summary": "2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "2297579", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297579" }, { "category": "external", "summary": "2298107", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298107" }, { "category": "external", "summary": "2298109", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298109" }, { "category": "external", "summary": "2298122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298122" }, { "category": "external", "summary": "2298135", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298135" }, { "category": "external", "summary": "2298155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298155" }, { "category": "external", "summary": "2300429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300429" }, { "category": "external", "summary": "2300448", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300448" }, { "category": "self", "summary": "Canonical URL", "url": "https://security.access.redhat.com/data/csaf/v2/advisories/2024/rhsa-2024_6991.json" } ], "title": "Red Hat Security Advisory: kernel security update", "tracking": { "current_release_date": "2024-11-15T18:42:46+00:00", "generator": { "date": "2024-11-15T18:42:46+00:00", "engine": { "name": "Red Hat SDEngine", "version": "4.2.1" } }, "id": "RHSA-2024:6991", "initial_release_date": "2024-09-24T00:49:27+00:00", "revision_history": [ { "date": "2024-09-24T00:49:27+00:00", "number": "1", "summary": "Initial version" }, { "date": "2024-09-24T00:49:27+00:00", "number": "2", "summary": "Last updated version" }, { "date": "2024-11-15T18:42:46+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.117.1.el9_0.aarch64", "product": { "name": "bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.117.1.el9_0?arch=aarch64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.117.1.el9_0.aarch64", "product": { "name": "perf-0:5.14.0-70.117.1.el9_0.aarch64", "product_id": "perf-0:5.14.0-70.117.1.el9_0.aarch64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.117.1.el9_0?arch=aarch64" } } } ], "category": "architecture", "name": "aarch64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.117.1.el9_0?arch=ppc64le" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product": { "name": "perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product_id": "perf-0:5.14.0-70.117.1.el9_0.ppc64le", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.117.1.el9_0?arch=ppc64le" } } } ], "category": "architecture", "name": "ppc64le" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.117.1.el9_0?arch=x86_64" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.117.1.el9_0.x86_64", "product": { "name": "perf-0:5.14.0-70.117.1.el9_0.x86_64", "product_id": "perf-0:5.14.0-70.117.1.el9_0.x86_64", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.117.1.el9_0?arch=x86_64" } } } ], "category": "architecture", "name": "x86_64" }, { "branches": [ { "category": "product_version", "name": "bpftool-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "bpftool-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "bpftool-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-core@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/bpftool-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-headers@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-70.117.1.el9_0?arch=s390x" } } }, { "category": "product_version", "name": "perf-0:5.14.0-70.117.1.el9_0.s390x", "product": { "name": "perf-0:5.14.0-70.117.1.el9_0.s390x", "product_id": "perf-0:5.14.0-70.117.1.el9_0.s390x", "product_identification_helper": { "purl": "pkg:rpm/redhat/perf@5.14.0-70.117.1.el9_0?arch=s390x" } } } ], "category": "architecture", "name": "s390x" }, { "branches": [ { "category": "product_version", "name": "kernel-0:5.14.0-70.117.1.el9_0.src", "product": { "name": "kernel-0:5.14.0-70.117.1.el9_0.src", "product_id": "kernel-0:5.14.0-70.117.1.el9_0.src", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel@5.14.0-70.117.1.el9_0?arch=src" } } } ], "category": "architecture", "name": "src" }, { "branches": [ { "category": "product_version", "name": "kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "product": { "name": "kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "product_id": "kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-70.117.1.el9_0?arch=noarch" } } }, { "category": "product_version", "name": "kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "product": { "name": "kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "product_id": "kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "product_identification_helper": { "purl": "pkg:rpm/redhat/kernel-doc@5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.src" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.noarch" }, "product_reference": "kernel-doc-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "bpftool-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "bpftool-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.src" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-0:5.14.0-70.117.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.117.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.117.1.el9_0.noarch" }, "product_reference": "kernel-abi-stablelists-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debug-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.noarch" }, "product_reference": "kernel-doc-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-headers-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "kernel-tools-libs-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-core-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "python3-perf-0:5.14.0-70.117.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.117.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.117.1.el9_0.aarch64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.ppc64le" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.s390x" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.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.117.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.117.1.el9_0.x86_64" }, "product_reference": "python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "relates_to_product_reference": "BaseOS-9.0.0.Z.E4S" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-47393", "cwe": { "id": "CWE-754", "name": "Improper Check for Unusual or Exceptional Conditions" }, "discovery_date": "2024-05-21T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2282345" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nhwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs\n\nFan speed minimum can be enforced from sysfs. For example, setting\ncurrent fan speed to 20 is used to enforce fan speed to be at 100%\nspeed, 19 - to be not below 90% speed, etcetera. This feature provides\nability to limit fan speed according to some system wise\nconsiderations, like absence of some replaceable units or high system\nambient temperature.\n\nRequest for changing fan minimum speed is configuration request and can\nbe set only through \u0027sysfs\u0027 write procedure. In this situation value of\nargument \u0027state\u0027 is above nominal fan speed maximum.\n\nReturn non-zero code in this case to avoid\nthermal_cooling_device_stats_update() call, because in this case\nstatistics update violates thermal statistics table range.\nThe issues is observed in case kernel is configured with option\nCONFIG_THERMAL_STATISTICS.\n\nHere is the trace from KASAN:\n[ 159.506659] BUG: KASAN: slab-out-of-bounds in thermal_cooling_device_stats_update+0x7d/0xb0\n[ 159.516016] Read of size 4 at addr ffff888116163840 by task hw-management.s/7444\n[ 159.545625] Call Trace:\n[ 159.548366] dump_stack+0x92/0xc1\n[ 159.552084] ? thermal_cooling_device_stats_update+0x7d/0xb0\n[ 159.635869] thermal_zone_device_update+0x345/0x780\n[ 159.688711] thermal_zone_device_set_mode+0x7d/0xc0\n[ 159.694174] mlxsw_thermal_modules_init+0x48f/0x590 [mlxsw_core]\n[ 159.700972] ? mlxsw_thermal_set_cur_state+0x5a0/0x5a0 [mlxsw_core]\n[ 159.731827] mlxsw_thermal_init+0x763/0x880 [mlxsw_core]\n[ 160.070233] RIP: 0033:0x7fd995909970\n[ 160.074239] Code: 73 01 c3 48 8b 0d 28 d5 2b 00 f7 d8 64 89 01 48 83 c8 ff c3 66 0f 1f 44 00 00 83 3d 99 2d 2c 00 00 75 10 b8 01 00 00 00 0f 05 \u003c48\u003e 3d 01 f0 ff ..\n[ 160.095242] RSP: 002b:00007fff54f5d938 EFLAGS: 00000246 ORIG_RAX: 0000000000000001\n[ 160.103722] RAX: ffffffffffffffda RBX: 0000000000000013 RCX: 00007fd995909970\n[ 160.111710] RDX: 0000000000000013 RSI: 0000000001906008 RDI: 0000000000000001\n[ 160.119699] RBP: 0000000001906008 R08: 00007fd995bc9760 R09: 00007fd996210700\n[ 160.127687] R10: 0000000000000073 R11: 0000000000000246 R12: 0000000000000013\n[ 160.135673] R13: 0000000000000001 R14: 00007fd995bc8600 R15: 0000000000000013\n[ 160.143671]\n[ 160.145338] Allocated by task 2924:\n[ 160.149242] kasan_save_stack+0x19/0x40\n[ 160.153541] __kasan_kmalloc+0x7f/0xa0\n[ 160.157743] __kmalloc+0x1a2/0x2b0\n[ 160.161552] thermal_cooling_device_setup_sysfs+0xf9/0x1a0\n[ 160.167687] __thermal_cooling_device_register+0x1b5/0x500\n[ 160.173833] devm_thermal_of_cooling_device_register+0x60/0xa0\n[ 160.180356] mlxreg_fan_probe+0x474/0x5e0 [mlxreg_fan]\n[ 160.248140]\n[ 160.249807] The buggy address belongs to the object at ffff888116163400\n[ 160.249807] which belongs to the cache kmalloc-1k of size 1024\n[ 160.263814] The buggy address is located 64 bytes to the right of\n[ 160.263814] 1024-byte region [ffff888116163400, ffff888116163800)\n[ 160.277536] The buggy address belongs to the page:\n[ 160.282898] page:0000000012275840 refcount:1 mapcount:0 mapping:0000000000000000 index:0xffff888116167000 pfn:0x116160\n[ 160.294872] head:0000000012275840 order:3 compound_mapcount:0 compound_pincount:0\n[ 160.303251] flags: 0x200000000010200(slab|head|node=0|zone=2)\n[ 160.309694] raw: 0200000000010200 ffffea00046f7208 ffffea0004928208 ffff88810004dbc0\n[ 160.318367] raw: ffff888116167000 00000000000a0006 00000001ffffffff 0000000000000000\n[ 160.327033] page dumped because: kasan: bad access detected\n[ 160.333270]\n[ 160.334937] Memory state around the buggy address:\n[ 160.356469] \u003effff888116163800: fc ..", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs", "title": "Vulnerability summary" }, { "category": "other", "text": "This vulnerability is rated as a moderate severity because it can disrupt system operation by causing crashes or unpredictable behaviour under specific 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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47393" }, { "category": "external", "summary": "RHBZ#2282345", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2282345" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47393", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47393" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47393", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47393" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052147-CVE-2021-47393-ea1c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052147-CVE-2021-47393-ea1c@gregkh/T" } ], "release_date": "2024-05-21T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.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.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: hwmon: (mlxreg-fan) Return non-zero value when fan current state is enforced from sysfs" }, { "cve": "CVE-2021-47559", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-05-24T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2283390" } ], "notes": [ { "category": "description", "text": "A vulnerability was found in the Linux kernel\u0027s SMC implementation in the smc_vlan_by_tcpsk() function. A potential NULL pointer dereference occurred when handling lower network devices, leading to system crashes and resulting in denial of service.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47559" }, { "category": "external", "summary": "RHBZ#2283390", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2283390" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47559", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47559" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47559", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47559" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47559-9909@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47559-9909@gregkh/T" } ], "release_date": "2024-05-24T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/smc: Fix NULL pointer dereferencing in smc_vlan_by_tcpsk()" }, { "cve": "CVE-2021-47623", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298107" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\npowerpc/fixmap: Fix VM debug warning on unmap\n\nUnmapping a fixmap entry is done by calling __set_fixmap()\nwith FIXMAP_PAGE_CLEAR as flags.\n\nToday, powerpc __set_fixmap() calls map_kernel_page().\n\nmap_kernel_page() is not happy when called a second time\nfor the same page.\n\n\tWARNING: CPU: 0 PID: 1 at arch/powerpc/mm/pgtable.c:194 set_pte_at+0xc/0x1e8\n\tCPU: 0 PID: 1 Comm: swapper Not tainted 5.16.0-rc3-s3k-dev-01993-g350ff07feb7d-dirty #682\n\tNIP: c0017cd4 LR: c00187f0 CTR: 00000010\n\tREGS: e1011d50 TRAP: 0700 Not tainted (5.16.0-rc3-s3k-dev-01993-g350ff07feb7d-dirty)\n\tMSR: 00029032 \u003cEE,ME,IR,DR,RI\u003e CR: 42000208 XER: 00000000\n\n\tGPR00: c0165fec e1011e10 c14c0000 c0ee2550 ff800000 c0f3d000 00000000 c001686c\n\tGPR08: 00001000 b00045a9 00000001 c0f58460 c0f50000 00000000 c0007e10 00000000\n\tGPR16: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000\n\tGPR24: 00000000 00000000 c0ee2550 00000000 c0f57000 00000ff8 00000000 ff800000\n\tNIP [c0017cd4] set_pte_at+0xc/0x1e8\n\tLR [c00187f0] map_kernel_page+0x9c/0x100\n\tCall Trace:\n\t[e1011e10] [c0736c68] vsnprintf+0x358/0x6c8 (unreliable)\n\t[e1011e30] [c0165fec] __set_fixmap+0x30/0x44\n\t[e1011e40] [c0c13bdc] early_iounmap+0x11c/0x170\n\t[e1011e70] [c0c06cb0] ioremap_legacy_serial_console+0x88/0xc0\n\t[e1011e90] [c0c03634] do_one_initcall+0x80/0x178\n\t[e1011ef0] [c0c0385c] kernel_init_freeable+0xb4/0x250\n\t[e1011f20] [c0007e34] kernel_init+0x24/0x140\n\t[e1011f30] [c0016268] ret_from_kernel_thread+0x5c/0x64\n\tInstruction dump:\n\t7fe3fb78 48019689 80010014 7c630034 83e1000c 5463d97e 7c0803a6 38210010\n\t4e800020 81250000 712a0001 41820008 \u003c0fe00000\u003e 9421ffe0 93e1001c 48000030\n\nImplement unmap_kernel_page() which clears an existing pte.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: powerpc/fixmap: Fix VM debug warning on unmap", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2021-47623" }, { "category": "external", "summary": "RHBZ#2298107", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298107" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2021-47623", "url": "https://www.cve.org/CVERecord?id=CVE-2021-47623" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2021-47623", "url": "https://nvd.nist.gov/vuln/detail/CVE-2021-47623" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071645-CVE-2021-47623-407f@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071645-CVE-2021-47623-407f@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" } ], "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": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Low" } ], "title": "kernel: powerpc/fixmap: Fix VM debug warning on unmap" }, { "cve": "CVE-2022-48773", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298109" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nxprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create\n\nIf there are failures then we must not leave the non-NULL pointers with\nthe error value, otherwise `rpcrdma_ep_destroy` gets confused and tries\nfree them, resulting in an Oops.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48773" }, { "category": "external", "summary": "RHBZ#2298109", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298109" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48773", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48773" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48773", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48773" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071628-CVE-2022-48773-9563@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071628-CVE-2022-48773-9563@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" } ], "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: xprtrdma: fix pointer derefs in error cases of rpcrdma_ep_create" }, { "cve": "CVE-2022-48786", "cwe": { "id": "CWE-371", "name": "CWE-371" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298122" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nvsock: remove vsock from connected table when connect is interrupted by a signal\n\nvsock_connect() expects that the socket could already be in the\nTCP_ESTABLISHED state when the connecting task wakes up with a signal\npending. If this happens the socket will be in the connected table, and\nit is not removed when the socket state is reset. In this situation it\u0027s\ncommon for the process to retry connect(), and if the connection is\nsuccessful the socket will be added to the connected table a second\ntime, corrupting the list.\n\nPrevent this by calling vsock_remove_connected() if a signal is received\nwhile waiting for a connection. This is harmless if the socket is not in\nthe connected table, and if it is in the table then removing it will\nprevent list corruption from a double add.\n\nNote for backporting: this patch requires d5afa82c977e (\"vsock: correct\nremoval of socket from the list\"), which is in all current stable trees\nexcept 4.9.y.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: vsock: remove vsock from connected table when connect is interrupted by a signal", "title": "Vulnerability summary" }, { "category": "other", "text": "This issue is fixed in RHEL-9.1 and above\n~~~\nin (rhel-8.7, rhel-8.8, rhel-8.9, rhel-8.10) vsock: remove vsock from connected table when connect is interrupted by a signal\nin (rhel-9.1, rhel-9.2, rhel-9.3, rhel-9.4, rhel-9.5) vsock: remove vsock from connected table when connect is interrupted by a signal\n~~~\n\nPlease note that while RHEL-9 kernel-rt still appears as affected, it has been fixed in the same RHSA as RHEL-9 kernel. This is because from RHEL-9.3 onwards, the kernel and kernel-rt fixes are bundled together in a single errata.", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48786" }, { "category": "external", "summary": "RHBZ#2298122", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298122" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48786", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48786" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48786", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48786" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071637-CVE-2022-48786-7416@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071637-CVE-2022-48786-7416@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "LOW", "baseScore": 4.4, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: vsock: remove vsock from connected table when connect is interrupted by a signal" }, { "cve": "CVE-2022-48799", "cwe": { "id": "CWE-99", "name": "Improper Control of Resource Identifiers (\u0027Resource Injection\u0027)" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298135" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nperf: Fix list corruption in perf_cgroup_switch()\n\nThere\u0027s list corruption on cgrp_cpuctx_list. This happens on the\nfollowing path:\n\n perf_cgroup_switch: list_for_each_entry(cgrp_cpuctx_list)\n cpu_ctx_sched_in\n ctx_sched_in\n ctx_pinned_sched_in\n merge_sched_in\n perf_cgroup_event_disable: remove the event from the list\n\nUse list_for_each_entry_safe() to allow removing an entry during\niteration.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: perf: Fix list corruption in perf_cgroup_switch()", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48799" }, { "category": "external", "summary": "RHBZ#2298135", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298135" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48799", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48799" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48799", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48799" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071643-CVE-2022-48799-9594@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071643-CVE-2022-48799-9594@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: perf: Fix list corruption in perf_cgroup_switch()" }, { "cve": "CVE-2022-48816", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-16T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2298155" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nSUNRPC: lock against -\u003esock changing during sysfs read\n\n-\u003esock can be set to NULL asynchronously unless -\u003erecv_mutex is held.\nSo it is important to hold that mutex. Otherwise a sysfs read can\ntrigger an oops.\nCommit 17f09d3f619a (\"SUNRPC: Check if the xprt is connected before\nhandling sysfs reads\") appears to attempt to fix this problem, but it\nonly narrows the race window.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2022-48816" }, { "category": "external", "summary": "RHBZ#2298155", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2298155" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2022-48816", "url": "https://www.cve.org/CVERecord?id=CVE-2022-48816" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2022-48816", "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-48816" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071648-CVE-2022-48816-e2a3@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071648-CVE-2022-48816-e2a3@gregkh/T" } ], "release_date": "2024-07-16T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: SUNRPC: lock against -\u0026gt;sock changing during sysfs read" }, { "cve": "CVE-2023-52489", "cwe": { "id": "CWE-362", "name": "Concurrent Execution using Shared Resource with Improper Synchronization (\u0027Race Condition\u0027)" }, "discovery_date": "2024-02-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2269189" } ], "notes": [ { "category": "description", "text": "A race condition was found on a PFN in the Linux Kernel, which can fall into the device memory region with the system memory configuration. Normal zone start and end PFNs contain the device memory PFNs as well, and the compaction triggered will try on the device memory PFNs and end up in NOP. This may lead to compromised Availability.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm/sparsemem: fix race in accessing memory_section-\u003eusage", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2023-52489" }, { "category": "external", "summary": "RHBZ#2269189", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2269189" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2023-52489", "url": "https://www.cve.org/CVERecord?id=CVE-2023-52489" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52489", "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52489" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/20240229155245.1571576-30-lee@kernel.org/T", "url": "https://lore.kernel.org/linux-cve-announce/20240229155245.1571576-30-lee@kernel.org/T" } ], "release_date": "2024-02-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" } ], "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm/sparsemem: fix race in accessing memory_section-\u003eusage" }, { "cve": "CVE-2024-40984", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-12T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297568" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nACPICA: Revert \"ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\"\n\nUndo the modifications made in commit d410ee5109a1 (\"ACPICA: avoid\n\"Info: mapping multiple BARs. Your kernel is fine.\"\"). The initial\npurpose of this commit was to stop memory mappings for operation\nregions from overlapping page boundaries, as it can trigger warnings\nif different page attributes are present.\n\nHowever, it was found that when this situation arises, mapping\ncontinues until the boundary\u0027s end, but there is still an attempt to\nread/write the entire length of the map, leading to a NULL pointer\ndeference. For example, if a four-byte mapping request is made but\nonly one byte is mapped because it hits the current page boundary\u0027s\nend, a four-byte read/write attempt is still made, resulting in a NULL\npointer deference.\n\nInstead, map the entire length, as the ACPI specification does not\nmandate that it must be within the same page boundary. It is\npermissible for it to be mapped across different regions.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40984" }, { "category": "external", "summary": "RHBZ#2297568", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297568" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40984", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40984" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40984" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071201-CVE-2024-40984-66b2@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: ACPICA: Revert \u0026#34;ACPICA: avoid Info: mapping multiple BARs. Your kernel is fine.\u0026#34;" }, { "cve": "CVE-2024-40995", "cwe": { "id": "CWE-833", "name": "Deadlock" }, "discovery_date": "2024-07-12T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2297579" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nnet/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()\n\nsyzbot found hanging tasks waiting on rtnl_lock [1]\n\nA reproducer is available in the syzbot bug.\n\nWhen a request to add multiple actions with the same index is sent, the\nsecond request will block forever on the first request. This holds\nrtnl_lock, and causes tasks to hang.\n\nReturn -EAGAIN to prevent infinite looping, while keeping documented\nbehavior.\n\n[1]\n\nINFO: task kworker/1:0:5088 blocked for more than 143 seconds.\nNot tainted 6.9.0-rc4-syzkaller-00173-g3cdb45594619 #0\n\"echo 0 \u003e /proc/sys/kernel/hung_task_timeout_secs\" disables this message.\ntask:kworker/1:0 state:D stack:23744 pid:5088 tgid:5088 ppid:2 flags:0x00004000\nWorkqueue: events_power_efficient reg_check_chans_work\nCall Trace:\n\u003cTASK\u003e\ncontext_switch kernel/sched/core.c:5409 [inline]\n__schedule+0xf15/0x5d00 kernel/sched/core.c:6746\n__schedule_loop kernel/sched/core.c:6823 [inline]\nschedule+0xe7/0x350 kernel/sched/core.c:6838\nschedule_preempt_disabled+0x13/0x30 kernel/sched/core.c:6895\n__mutex_lock_common kernel/locking/mutex.c:684 [inline]\n__mutex_lock+0x5b8/0x9c0 kernel/locking/mutex.c:752\nwiphy_lock include/net/cfg80211.h:5953 [inline]\nreg_leave_invalid_chans net/wireless/reg.c:2466 [inline]\nreg_check_chans_work+0x10a/0x10e0 net/wireless/reg.c:2481", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-40995" }, { "category": "external", "summary": "RHBZ#2297579", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2297579" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-40995", "url": "https://www.cve.org/CVERecord?id=CVE-2024-40995" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-40995", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-40995" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024071251-CVE-2024-40995-2a5c@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024071251-CVE-2024-40995-2a5c@gregkh/T" } ], "release_date": "2024-07-12T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "scores": [ { "cvss_v3": { "attackComplexity": "LOW", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "baseScore": 5.5, "baseSeverity": "MEDIUM", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "privilegesRequired": "LOW", "scope": "UNCHANGED", "userInteraction": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "version": "3.1" }, "products": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: net/sched: act_api: fix possible infinite loop in tcf_idr_check_alloc()" }, { "cve": "CVE-2024-41055", "cwe": { "id": "CWE-476", "name": "NULL Pointer Dereference" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300429" } ], "notes": [ { "category": "description", "text": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm: prevent derefencing NULL ptr in pfn_section_valid()\n\nCommit 5ec8e8ea8b77 (\"mm/sparsemem: fix race in accessing\nmemory_section-\u003eusage\") changed pfn_section_valid() to add a READ_ONCE()\ncall around \"ms-\u003eusage\" to fix a race with section_deactivate() where\nms-\u003eusage can be cleared. The READ_ONCE() call, by itself, is not enough\nto prevent NULL pointer dereference. We need to check its value before\ndereferencing it.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: mm: prevent derefencing NULL ptr in pfn_section_valid()", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41055" }, { "category": "external", "summary": "RHBZ#2300429", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300429" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41055", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41055" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41055", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41055" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072928-CVE-2024-41055-5764@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072928-CVE-2024-41055-5764@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" } ], "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Moderate" } ], "title": "kernel: mm: prevent derefencing NULL ptr in pfn_section_valid()" }, { "cve": "CVE-2024-41071", "cwe": { "id": "CWE-787", "name": "Out-of-bounds Write" }, "discovery_date": "2024-07-29T00:00:00+00:00", "ids": [ { "system_name": "Red Hat Bugzilla ID", "text": "2300448" } ], "notes": [ { "category": "description", "text": "An out-of-bounds buffer overflow has been found in the Linux kernel\u2019s mac80211 subsystem when scanning for SSIDs. Address calculation using out-of-bounds array indexing could result in an attacker crafting an exploit, resulting in the complete compromise of a system.", "title": "Vulnerability description" }, { "category": "summary", "text": "kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing", "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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] }, "references": [ { "category": "self", "summary": "Canonical URL", "url": "https://access.redhat.com/security/cve/CVE-2024-41071" }, { "category": "external", "summary": "RHBZ#2300448", "url": "https://bugzilla.redhat.com/show_bug.cgi?id=2300448" }, { "category": "external", "summary": "https://www.cve.org/CVERecord?id=CVE-2024-41071", "url": "https://www.cve.org/CVERecord?id=CVE-2024-41071" }, { "category": "external", "summary": "https://nvd.nist.gov/vuln/detail/CVE-2024-41071", "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-41071" }, { "category": "external", "summary": "https://lore.kernel.org/linux-cve-announce/2024072909-CVE-2024-41071-4eb6@gregkh/T", "url": "https://lore.kernel.org/linux-cve-announce/2024072909-CVE-2024-41071-4eb6@gregkh/T" } ], "release_date": "2024-07-29T00:00:00+00:00", "remediations": [ { "category": "vendor_fix", "date": "2024-09-24T00:49:27+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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ], "restart_required": { "category": "machine" }, "url": "https://access.redhat.com/errata/RHSA-2024:6991" }, { "category": "workaround", "details": "There are no mitigations for the flaw. Please update your system for fixes.", "product_ids": [ "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.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.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "AppStream-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "AppStream-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:bpftool-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.src", "BaseOS-9.0.0.Z.E4S:kernel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-abi-stablelists-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-core-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debug-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-aarch64-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-ppc64le-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-s390x-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-debuginfo-common-x86_64-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-devel-matched-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-doc-0:5.14.0-70.117.1.el9_0.noarch", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-headers-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-modules-extra-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-tools-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:kernel-tools-libs-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-core-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-devel-matched-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:kernel-zfcpdump-modules-extra-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-0:5.14.0-70.117.1.el9_0.x86_64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.aarch64", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.ppc64le", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.s390x", "BaseOS-9.0.0.Z.E4S:python3-perf-debuginfo-0:5.14.0-70.117.1.el9_0.x86_64" ] } ], "threats": [ { "category": "impact", "details": "Important" } ], "title": "kernel: wifi: mac80211: Avoid address calculations via out of bounds array indexing" } ] }
wid-sec-w-2024-1235
Vulnerability from csaf_certbund
Published
2024-05-26 22:00
Modified
2024-07-23 22:00
Summary
Linux Kernel: Mehrere Schwachstellen ermöglichen Denial of Service und unspezifische Angriffe
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung
Der Kernel stellt den Kern des Linux Betriebssystems dar.
Angriff
Ein lokaler Angreifer kann mehrere Schwachstellen im Linux-Kernel ausnutzen, um einen Denial-of-Service-Zustand zu erzeugen oder unspezifische Angriffe durchzuführen.
Betroffene Betriebssysteme
- Linux
{ "document": { "aggregate_severity": { "text": "mittel" }, "category": "csaf_base", "csaf_version": "2.0", "distribution": { "tlp": { "label": "WHITE", "url": "https://www.first.org/tlp/" } }, "lang": "de-DE", "notes": [ { "category": "legal_disclaimer", "text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen." }, { "category": "description", "text": "Der Kernel stellt den Kern des Linux Betriebssystems dar.", "title": "Produktbeschreibung" }, { "category": "summary", "text": "Ein lokaler Angreifer kann mehrere Schwachstellen im Linux-Kernel ausnutzen, um einen Denial-of-Service-Zustand zu erzeugen oder unspezifische Angriffe durchzuf\u00fchren.", "title": "Angriff" }, { "category": "general", "text": "- Linux", "title": "Betroffene Betriebssysteme" } ], "publisher": { "category": "other", "contact_details": "csaf-provider@cert-bund.de", "name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik", "namespace": "https://www.bsi.bund.de" }, "references": [ { "category": "self", "summary": "WID-SEC-W-2024-1235 - CSAF Version", "url": "https://wid.cert-bund.de/.well-known/csaf/white/2024/wid-sec-w-2024-1235.json" }, { "category": "self", "summary": "WID-SEC-2024-1235 - Portal Version", "url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2024-1235" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47499 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052447-CVE-2021-47499-bf2e@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47500 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47500-3c02@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47501 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47501-e183@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47502 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47502-8650@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47503 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47503-b1c2@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47504 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47504-2a5d@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47505 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47505-427f@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47506 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47506-c143@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47507 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47507-e722@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47508 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052453-CVE-2021-47508-1a19@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47509 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052429-CVE-2021-47509-a210@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47510 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052430-CVE-2021-47510-7c3f@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47511 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052430-CVE-2021-47511-7bec@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47512 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052430-CVE-2021-47512-4d70@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47513 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052430-CVE-2021-47513-c6d0@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47514 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052431-CVE-2021-47514-9975@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47515 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052431-CVE-2021-47515-5c06@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47516 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052431-CVE-2021-47516-29dd@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47517 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052432-CVE-2021-47517-df40@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47518 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052432-CVE-2021-47518-632d@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47519 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052432-CVE-2021-47519-ed69@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47520 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052433-CVE-2021-47520-af45@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47521 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052433-CVE-2021-47521-8637@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47522 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052433-CVE-2021-47522-ad59@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47523 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052433-CVE-2021-47523-6f3a@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47524 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052434-CVE-2021-47524-7fd0@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47525 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052434-CVE-2021-47525-2b58@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47526 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052434-CVE-2021-47526-7f02@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47527 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052435-CVE-2021-47527-e6f5@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47528 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052435-CVE-2021-47528-da4e@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47529 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052435-CVE-2021-47529-a476@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47530 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052436-CVE-2021-47530-08d5@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47531 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052436-CVE-2021-47531-3ab6@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47532 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052436-CVE-2021-47532-9eaf@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47533 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052436-CVE-2021-47533-a03a@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47534 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052437-CVE-2021-47534-ef5f@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47535 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052437-CVE-2021-47535-41d3@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47536 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052437-CVE-2021-47536-fa00@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47537 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052438-CVE-2021-47537-015c@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47538 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052438-CVE-2021-47538-5639@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47539 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052438-CVE-2021-47539-f0a6@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47540 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052439-CVE-2021-47540-3bea@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47541 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052439-CVE-2021-47541-c3da@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47542 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052439-CVE-2021-47542-125d@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47543 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052439-CVE-2021-47543-a01a@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47544 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052440-CVE-2021-47544-ceb5@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47545 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052440-CVE-2021-47545-0f72@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47546 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052440-CVE-2021-47546-f25b@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47547 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052441-CVE-2021-47547-f3e7@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47548 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052441-CVE-2021-47548-e9c0@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47549 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052441-CVE-2021-47549-5aac@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47550 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052442-CVE-2021-47550-a5e1@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47551 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052442-CVE-2021-47551-0318@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47552 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052442-CVE-2021-47552-99f3@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47553 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052442-CVE-2021-47553-1026@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47554 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052443-CVE-2021-47554-f8a6@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47555 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052443-CVE-2021-47555-3043@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47556 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052443-CVE-2021-47556-558e@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47557 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052444-CVE-2021-47557-bc88@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47558 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052444-CVE-2021-47558-d713@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47559 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052450-CVE-2021-47559-9909@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47560 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47560-4a52@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47561 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47561-4a07@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47562 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052451-CVE-2021-47562-52ec@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47563 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47563-008a@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47564 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47564-2e3b@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47565 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052452-CVE-2021-47565-5f60@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47566 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052453-CVE-2021-47566-12b8@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47567 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052453-CVE-2021-47567-b955@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47568 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052453-CVE-2021-47568-bf15@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47569 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052453-CVE-2021-47569-2d3a@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47570 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052454-CVE-2021-47570-573d@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47571 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052454-CVE-2021-47571-05b5@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2021-47572 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052454-CVE-2021-47572-50bc@gregkh/T/" }, { "category": "external", "summary": "Linux CVE Announcement CVE-2023-52880 vom 2024-05-26", "url": "https://lore.kernel.org/linux-cve-announce/2024052422-CVE-2023-52880-d2ff@gregkh/T/" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1979-1 vom 2024-06-11", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018685.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1978-1 vom 2024-06-11", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018686.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:1983-1 vom 2024-06-11", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018700.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2011-1 vom 2024-06-12", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018710.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2008-1 vom 2024-06-12", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018706.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2010-1 vom 2024-06-12", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018711.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2184-1 vom 2024-06-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018807.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2183-1 vom 2024-06-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018808.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2185-1 vom 2024-06-24", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018809.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2189-1 vom 2024-06-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018811.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2190-1 vom 2024-06-25", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-June/018819.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-3842 vom 2024-06-25", "url": "https://lists.debian.org/debian-lts-announce/2024/06/msg00017.html" }, { "category": "external", "summary": "Debian Security Advisory DLA-3840 vom 2024-06-27", "url": "https://lists.debian.org/debian-lts-announce/2024/06/msg00020.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2365-1 vom 2024-07-09", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018897.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2372-1 vom 2024-07-09", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018901.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2362-1 vom 2024-07-09", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018905.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2360-1 vom 2024-07-09", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018907.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2381-1 vom 2024-07-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018916.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2385-1 vom 2024-07-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018920.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2384-1 vom 2024-07-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018921.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2394-1 vom 2024-07-10", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018922.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4533 vom 2024-07-15", "url": "https://access.redhat.com/errata/RHSA-2024:4533" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6896-1 vom 2024-07-12", "url": "https://ubuntu.com/security/notices/USN-6896-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6895-1 vom 2024-07-12", "url": "https://ubuntu.com/security/notices/USN-6895-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6898-1 vom 2024-07-15", "url": "https://ubuntu.com/security/notices/USN-6898-1" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4554 vom 2024-07-16", "url": "https://access.redhat.com/errata/RHSA-2024:4554" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6895-2 vom 2024-07-16", "url": "https://ubuntu.com/security/notices/USN-6895-2" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2495-1 vom 2024-07-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018982.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2493-1 vom 2024-07-16", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/018984.html" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4583 vom 2024-07-17", "url": "https://access.redhat.com/errata/RHSA-2024:4583" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6896-2 vom 2024-07-16", "url": "https://ubuntu.com/security/notices/USN-6896-2" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6900-1 vom 2024-07-17", "url": "https://ubuntu.com/security/notices/USN-6900-1" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6898-2 vom 2024-07-17", "url": "https://ubuntu.com/security/notices/USN-6898-2" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6896-3 vom 2024-07-17", "url": "https://ubuntu.com/security/notices/USN-6896-3" }, { "category": "external", "summary": "Oracle Linux Security Advisory ELSA-2024-4583 vom 2024-07-19", "url": "https://linux.oracle.com/errata/ELSA-2024-4583.html" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2561-1 vom 2024-07-18", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/019001.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6895-3 vom 2024-07-19", "url": "https://ubuntu.com/security/notices/USN-6895-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6898-3 vom 2024-07-19", "url": "https://ubuntu.com/security/notices/USN-6898-3" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6896-4 vom 2024-07-19", "url": "https://ubuntu.com/security/notices/USN-6896-4" }, { "category": "external", "summary": "SUSE Security Update SUSE-SU-2024:2571-1 vom 2024-07-22", "url": "https://lists.suse.com/pipermail/sle-security-updates/2024-July/019019.html" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6896-5 vom 2024-07-23", "url": "https://ubuntu.com/security/notices/USN-6896-5" }, { "category": "external", "summary": "Ubuntu Security Notice USN-6898-4 vom 2024-07-23", "url": "https://ubuntu.com/security/notices/USN-6898-4" }, { "category": "external", "summary": "Red Hat Security Advisory RHSA-2024:4740 vom 2024-07-24", "url": "https://access.redhat.com/errata/RHSA-2024:4740" } ], "source_lang": "en-US", "title": "Linux Kernel: Mehrere Schwachstellen erm\u00f6glichen Denial of Service und unspezifische Angriffe", "tracking": { "current_release_date": "2024-07-23T22:00:00.000+00:00", "generator": { "date": "2024-07-24T09:08:16.928+00:00", "engine": { "name": "BSI-WID", "version": "1.3.0" } }, "id": "WID-SEC-W-2024-1235", "initial_release_date": "2024-05-26T22:00:00.000+00:00", "revision_history": [ { "date": "2024-05-26T22:00:00.000+00:00", "number": "1", "summary": "Initiale Fassung" }, { "date": "2024-06-10T22:00:00.000+00:00", "number": "2", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-11T22:00:00.000+00:00", "number": "3", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-12T22:00:00.000+00:00", "number": "4", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-24T22:00:00.000+00:00", "number": "5", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-06-25T22:00:00.000+00:00", "number": "6", "summary": "Neue Updates von SUSE und Debian aufgenommen" }, { "date": "2024-06-27T22:00:00.000+00:00", "number": "7", "summary": "Neue Updates von Debian aufgenommen" }, { "date": "2024-07-09T22:00:00.000+00:00", "number": "8", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-10T22:00:00.000+00:00", "number": "9", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-14T22:00:00.000+00:00", "number": "10", "summary": "Neue Updates von Red Hat und Ubuntu aufgenommen" }, { "date": "2024-07-15T22:00:00.000+00:00", "number": "11", "summary": "Neue Updates von Ubuntu und Red Hat aufgenommen" }, { "date": "2024-07-16T22:00:00.000+00:00", "number": "12", "summary": "Neue Updates von Red Hat und Ubuntu aufgenommen" }, { "date": "2024-07-17T22:00:00.000+00:00", "number": "13", "summary": "Neue Updates von Ubuntu aufgenommen" }, { "date": "2024-07-18T22:00:00.000+00:00", "number": "14", "summary": "Neue Updates von Oracle Linux und SUSE aufgenommen" }, { "date": "2024-07-22T22:00:00.000+00:00", "number": "15", "summary": "Neue Updates von SUSE aufgenommen" }, { "date": "2024-07-23T22:00:00.000+00:00", "number": "16", "summary": "Neue Updates von Red Hat aufgenommen" } ], "status": "final", "version": "16" } }, "product_tree": { "branches": [ { "branches": [ { "category": "product_name", "name": "Debian Linux", "product": { "name": "Debian Linux", "product_id": "2951", "product_identification_helper": { "cpe": "cpe:/o:debian:debian_linux:-" } } } ], "category": "vendor", "name": "Debian" }, { "branches": [ { "category": "product_name", "name": "Open Source Linux Kernel", "product": { "name": "Open Source Linux Kernel", "product_id": "T035064", "product_identification_helper": { "cpe": "cpe:/o:linux:linux_kernel:-" } } } ], "category": "vendor", "name": "Open Source" }, { "branches": [ { "category": "product_name", "name": "Oracle Linux", "product": { "name": "Oracle Linux", "product_id": "T004914", "product_identification_helper": { "cpe": "cpe:/o:oracle:linux:-" } } } ], "category": "vendor", "name": "Oracle" }, { "branches": [ { "category": "product_name", "name": "Red Hat Enterprise Linux", "product": { "name": "Red Hat Enterprise Linux", "product_id": "67646", "product_identification_helper": { "cpe": "cpe:/o:redhat:enterprise_linux:-" } } } ], "category": "vendor", "name": "Red Hat" }, { "branches": [ { "category": "product_name", "name": "SUSE Linux", "product": { "name": "SUSE Linux", "product_id": "T002207", "product_identification_helper": { "cpe": "cpe:/o:suse:suse_linux:-" } } } ], "category": "vendor", "name": "SUSE" }, { "branches": [ { "category": "product_name", "name": "Ubuntu Linux", "product": { "name": "Ubuntu Linux", "product_id": "T000126", "product_identification_helper": { "cpe": "cpe:/o:canonical:ubuntu_linux:-" } } } ], "category": "vendor", "name": "Ubuntu" } ] }, "vulnerabilities": [ { "cve": "CVE-2021-47499", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47499" }, { "cve": "CVE-2021-47500", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47500" }, { "cve": "CVE-2021-47501", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47501" }, { "cve": "CVE-2021-47502", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47502" }, { "cve": "CVE-2021-47503", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47503" }, { "cve": "CVE-2021-47504", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47504" }, { "cve": "CVE-2021-47505", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47505" }, { "cve": "CVE-2021-47506", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47506" }, { "cve": "CVE-2021-47507", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47507" }, { "cve": "CVE-2021-47508", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47508" }, { "cve": "CVE-2021-47509", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47509" }, { "cve": "CVE-2021-47510", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47510" }, { "cve": "CVE-2021-47511", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47511" }, { "cve": "CVE-2021-47512", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47512" }, { "cve": "CVE-2021-47513", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47513" }, { "cve": "CVE-2021-47514", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47514" }, { "cve": "CVE-2021-47515", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47515" }, { "cve": "CVE-2021-47516", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47516" }, { "cve": "CVE-2021-47517", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47517" }, { "cve": "CVE-2021-47518", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47518" }, { "cve": "CVE-2021-47519", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47519" }, { "cve": "CVE-2021-47520", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47520" }, { "cve": "CVE-2021-47521", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47521" }, { "cve": "CVE-2021-47522", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47522" }, { "cve": "CVE-2021-47523", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47523" }, { "cve": "CVE-2021-47524", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47524" }, { "cve": "CVE-2021-47525", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47525" }, { "cve": "CVE-2021-47526", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47526" }, { "cve": "CVE-2021-47527", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47527" }, { "cve": "CVE-2021-47528", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47528" }, { "cve": "CVE-2021-47529", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47529" }, { "cve": "CVE-2021-47530", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47530" }, { "cve": "CVE-2021-47531", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47531" }, { "cve": "CVE-2021-47532", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47532" }, { "cve": "CVE-2021-47533", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47533" }, { "cve": "CVE-2021-47534", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47534" }, { "cve": "CVE-2021-47535", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47535" }, { "cve": "CVE-2021-47536", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47536" }, { "cve": "CVE-2021-47537", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47537" }, { "cve": "CVE-2021-47538", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47538" }, { "cve": "CVE-2021-47539", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47539" }, { "cve": "CVE-2021-47540", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47540" }, { "cve": "CVE-2021-47541", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47541" }, { "cve": "CVE-2021-47542", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47542" }, { "cve": "CVE-2021-47543", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47543" }, { "cve": "CVE-2021-47544", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47544" }, { "cve": "CVE-2021-47545", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47545" }, { "cve": "CVE-2021-47546", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47546" }, { "cve": "CVE-2021-47547", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47547" }, { "cve": "CVE-2021-47548", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47548" }, { "cve": "CVE-2021-47549", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47549" }, { "cve": "CVE-2021-47550", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47550" }, { "cve": "CVE-2021-47551", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47551" }, { "cve": "CVE-2021-47552", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47552" }, { "cve": "CVE-2021-47553", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47553" }, { "cve": "CVE-2021-47554", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47554" }, { "cve": "CVE-2021-47555", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47555" }, { "cve": "CVE-2021-47556", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47556" }, { "cve": "CVE-2021-47557", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47557" }, { "cve": "CVE-2021-47558", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47558" }, { "cve": "CVE-2021-47559", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47559" }, { "cve": "CVE-2021-47560", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47560" }, { "cve": "CVE-2021-47561", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47561" }, { "cve": "CVE-2021-47562", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47562" }, { "cve": "CVE-2021-47563", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47563" }, { "cve": "CVE-2021-47564", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47564" }, { "cve": "CVE-2021-47565", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47565" }, { "cve": "CVE-2021-47566", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47566" }, { "cve": "CVE-2021-47567", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47567" }, { "cve": "CVE-2021-47568", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47568" }, { "cve": "CVE-2021-47569", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47569" }, { "cve": "CVE-2021-47570", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47570" }, { "cve": "CVE-2021-47571", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47571" }, { "cve": "CVE-2021-47572", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2021-47572" }, { "cve": "CVE-2023-52880", "notes": [ { "category": "description", "text": "Es bestehen mehrere Schwachstellen im Linux-Kernel. Diese Fehler bestehen in mehreren Komponenten und Subsystemen wie scsi, ethtool oder HID, unter anderem aufgrund mehrerer sicherheitsrelevanter Probleme wie einem Use-after-free, einem Speicherleck oder einer NULL- Pointer-Dereferenz und mehr. Ein lokaler Angreifer kann diese Schwachstellen ausnutzen, um einen Denial-of-Service-Zustand herbeizuf\u00fchren oder einen nicht spezifizierten Angriff durchzuf\u00fchren." } ], "product_status": { "known_affected": [ "2951", "T002207", "67646", "T000126", "T035064", "T004914" ] }, "release_date": "2024-05-26T22:00:00Z", "title": "CVE-2023-52880" } ] }
Loading...
Loading...
Sightings
Author | Source | Type | Date |
---|
Nomenclature
- 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.