Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-31530 (GCVE-0-2026-31530)
Vulnerability from cvelistv5 – Published: 2026-04-22 13:54 – Updated: 2026-05-11 22:10| Vendor | Product | Version | CPE status | |
|---|---|---|---|---|
| Linux | Linux |
Affected:
2345df54249c6fb7779e2a72b427ee79ed3eaad5 , < d216a4bd138eb57cc4ae7c43b2f709e3482af7e2
(git)
Affected: 2345df54249c6fb7779e2a72b427ee79ed3eaad5 , < 2c32141462045cf93d54a5146a0ba572b83533dd (git) Affected: 2345df54249c6fb7779e2a72b427ee79ed3eaad5 , < f7dc6f381a1e5f068333f1faa9265d6af1df4235 (git) Affected: 2345df54249c6fb7779e2a72b427ee79ed3eaad5 , < 19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4 (git) |
guessed | |
| Linux | Linux |
Affected:
6.3
Unaffected: 0 , < 6.3 (semver) Unaffected: 6.12.80 , ≤ 6.12.* (semver) Unaffected: 6.18.21 , ≤ 6.18.* (semver) Unaffected: 6.19.11 , ≤ 6.19.* (semver) Unaffected: 7.0 , ≤ * (original_commit_for_fix) |
guessed |
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"drivers/cxl/core/port.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "d216a4bd138eb57cc4ae7c43b2f709e3482af7e2",
"status": "affected",
"version": "2345df54249c6fb7779e2a72b427ee79ed3eaad5",
"versionType": "git"
},
{
"lessThan": "2c32141462045cf93d54a5146a0ba572b83533dd",
"status": "affected",
"version": "2345df54249c6fb7779e2a72b427ee79ed3eaad5",
"versionType": "git"
},
{
"lessThan": "f7dc6f381a1e5f068333f1faa9265d6af1df4235",
"status": "affected",
"version": "2345df54249c6fb7779e2a72b427ee79ed3eaad5",
"versionType": "git"
},
{
"lessThan": "19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4",
"status": "affected",
"version": "2345df54249c6fb7779e2a72b427ee79ed3eaad5",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"drivers/cxl/core/port.c"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "6.3"
},
{
"lessThan": "6.3",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.80",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.18.*",
"status": "unaffected",
"version": "6.18.21",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.19.*",
"status": "unaffected",
"version": "6.19.11",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "7.0",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.80",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18.21",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.19.11",
"versionStartIncluding": "6.3",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "7.0",
"versionStartIncluding": "6.3",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\ncxl/port: Fix use after free of parent_port in cxl_detach_ep()\n\ncxl_detach_ep() is called during bottom-up removal when all CXL memory\ndevices beneath a switch port have been removed. For each port in the\nhierarchy it locks both the port and its parent, removes the endpoint,\nand if the port is now empty, marks it dead and unregisters the port\nby calling delete_switch_port(). There are two places during this work\nwhere the parent_port may be used after freeing:\n\nFirst, a concurrent detach may have already processed a port by the\ntime a second worker finds it via bus_find_device(). Without pinning\nparent_port, it may already be freed when we discover port-\u003edead and\nattempt to unlock the parent_port. In a production kernel that\u0027s a\nsilent memory corruption, with lock debug, it looks like this:\n\n[]DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current())\n[]WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310\n[]Call Trace:\n[]mutex_unlock+0xd/0x20\n[]cxl_detach_ep+0x180/0x400 [cxl_core]\n[]devm_action_release+0x10/0x20\n[]devres_release_all+0xa8/0xe0\n[]device_unbind_cleanup+0xd/0xa0\n[]really_probe+0x1a6/0x3e0\n\nSecond, delete_switch_port() releases three devm actions registered\nagainst parent_port. The last of those is unregister_port() and it\ncalls device_unregister() on the child port, which can cascade. If\nparent_port is now also empty the device core may unregister and free\nit too. So by the time delete_switch_port() returns, parent_port may\nbe free, and the subsequent device_unlock(\u0026parent_port-\u003edev) operates\non freed memory. The kernel log looks same as above, with a different\noffset in cxl_detach_ep().\n\nBoth of these issues stem from the absence of a lifetime guarantee\nbetween a child port and its parent port.\n\nEstablish a lifetime rule for ports: child ports hold a reference to\ntheir parent device until release. Take the reference when the port\nis allocated and drop it when released. This ensures the parent is\nvalid for the full lifetime of the child and eliminates the use after\nfree window in cxl_detach_ep().\n\nThis is easily reproduced with a reload of cxl_acpi in QEMU with CXL\ndevices present."
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T22:10:34.774Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/d216a4bd138eb57cc4ae7c43b2f709e3482af7e2"
},
{
"url": "https://git.kernel.org/stable/c/2c32141462045cf93d54a5146a0ba572b83533dd"
},
{
"url": "https://git.kernel.org/stable/c/f7dc6f381a1e5f068333f1faa9265d6af1df4235"
},
{
"url": "https://git.kernel.org/stable/c/19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4"
}
],
"title": "cxl/port: Fix use after free of parent_port in cxl_detach_ep()",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2026-31530",
"datePublished": "2026-04-22T13:54:42.563Z",
"dateReserved": "2026-03-09T15:48:24.112Z",
"dateUpdated": "2026-05-11T22:10:34.774Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-31530",
"date": "2026-08-22",
"epss": "0.00125",
"percentile": "0.02635"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-31530\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2026-04-22T14:16:53.293\",\"lastModified\":\"2026-06-17T10:33:55.400\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\ncxl/port: Fix use after free of parent_port in cxl_detach_ep()\\n\\ncxl_detach_ep() is called during bottom-up removal when all CXL memory\\ndevices beneath a switch port have been removed. For each port in the\\nhierarchy it locks both the port and its parent, removes the endpoint,\\nand if the port is now empty, marks it dead and unregisters the port\\nby calling delete_switch_port(). There are two places during this work\\nwhere the parent_port may be used after freeing:\\n\\nFirst, a concurrent detach may have already processed a port by the\\ntime a second worker finds it via bus_find_device(). Without pinning\\nparent_port, it may already be freed when we discover port-\u003edead and\\nattempt to unlock the parent_port. In a production kernel that\u0027s a\\nsilent memory corruption, with lock debug, it looks like this:\\n\\n[]DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current())\\n[]WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310\\n[]Call Trace:\\n[]mutex_unlock+0xd/0x20\\n[]cxl_detach_ep+0x180/0x400 [cxl_core]\\n[]devm_action_release+0x10/0x20\\n[]devres_release_all+0xa8/0xe0\\n[]device_unbind_cleanup+0xd/0xa0\\n[]really_probe+0x1a6/0x3e0\\n\\nSecond, delete_switch_port() releases three devm actions registered\\nagainst parent_port. The last of those is unregister_port() and it\\ncalls device_unregister() on the child port, which can cascade. If\\nparent_port is now also empty the device core may unregister and free\\nit too. So by the time delete_switch_port() returns, parent_port may\\nbe free, and the subsequent device_unlock(\u0026parent_port-\u003edev) operates\\non freed memory. The kernel log looks same as above, with a different\\noffset in cxl_detach_ep().\\n\\nBoth of these issues stem from the absence of a lifetime guarantee\\nbetween a child port and its parent port.\\n\\nEstablish a lifetime rule for ports: child ports hold a reference to\\ntheir parent device until release. Take the reference when the port\\nis allocated and drop it when released. This ensures the parent is\\nvalid for the full lifetime of the child and eliminates the use after\\nfree window in cxl_detach_ep().\\n\\nThis is easily reproduced with a reload of cxl_acpi in QEMU with CXL\\ndevices present.\"}],\"affected\":[{\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"affectedData\":[{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"unaffected\",\"programFiles\":[\"drivers/cxl/core/port.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"2345df54249c6fb7779e2a72b427ee79ed3eaad5\",\"lessThan\":\"d216a4bd138eb57cc4ae7c43b2f709e3482af7e2\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"2345df54249c6fb7779e2a72b427ee79ed3eaad5\",\"lessThan\":\"2c32141462045cf93d54a5146a0ba572b83533dd\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"2345df54249c6fb7779e2a72b427ee79ed3eaad5\",\"lessThan\":\"f7dc6f381a1e5f068333f1faa9265d6af1df4235\",\"versionType\":\"git\",\"status\":\"affected\"},{\"version\":\"2345df54249c6fb7779e2a72b427ee79ed3eaad5\",\"lessThan\":\"19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4\",\"versionType\":\"git\",\"status\":\"affected\"}]},{\"vendor\":\"Linux\",\"product\":\"Linux\",\"defaultStatus\":\"affected\",\"programFiles\":[\"drivers/cxl/core/port.c\"],\"repo\":\"https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git\",\"versions\":[{\"version\":\"6.3\",\"status\":\"affected\"},{\"version\":\"0\",\"lessThan\":\"6.3\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.12.80\",\"lessThanOrEqual\":\"6.12.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.18.21\",\"lessThanOrEqual\":\"6.18.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"6.19.11\",\"lessThanOrEqual\":\"6.19.*\",\"versionType\":\"semver\",\"status\":\"unaffected\"},{\"version\":\"7.0\",\"lessThanOrEqual\":\"*\",\"versionType\":\"original_commit_for_fix\",\"status\":\"unaffected\"}]}]}],\"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:H/I:H/A:H\",\"baseScore\":7.8,\"baseSeverity\":\"HIGH\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"HIGH\",\"integrityImpact\":\"HIGH\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":5.9}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.3\",\"versionEndExcluding\":\"6.12.80\",\"matchCriteriaId\":\"525BA660-423E-45E7-987B-D0A26771C45B\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.13\",\"versionEndExcluding\":\"6.18.21\",\"matchCriteriaId\":\"ED39847A-3B46-4729-B7CA-B2C30B9FA8FE\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.19\",\"versionEndExcluding\":\"6.19.11\",\"matchCriteriaId\":\"4CA2E747-A9EC-4518-9AA2-B4247FC748B7\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc1:*:*:*:*:*:*\",\"matchCriteriaId\":\"F253B622-8837-4245-BCE5-A7BF8FC76A16\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc2:*:*:*:*:*:*\",\"matchCriteriaId\":\"4AE85AD8-4641-4E7C-A2F4-305E2CD9EE64\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc3:*:*:*:*:*:*\",\"matchCriteriaId\":\"F666C8D8-6538-46D4-B318-87610DE64C34\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc4:*:*:*:*:*:*\",\"matchCriteriaId\":\"02259FDA-961B-47BC-AE7F-93D7EC6E90C2\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:7.0:rc5:*:*:*:*:*:*\",\"matchCriteriaId\":\"58A9FEFF-C040-420D-8F0A-BFDAAA1DF258\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/2c32141462045cf93d54a5146a0ba572b83533dd\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/d216a4bd138eb57cc4ae7c43b2f709e3482af7e2\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f7dc6f381a1e5f068333f1faa9265d6af1df4235\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}",
"redhat_vex": {
"aggregate_severity": "Moderate",
"current_release_date": "2026-08-11T10:47:36+00:00",
"cve": "CVE-2026-31530",
"id": "CVE-2026-31530",
"initial_release_date": "2026-04-22T00:00:00+00:00",
"product_status:fixed": "612",
"product_status:known_affected": "22",
"product_status:known_not_affected": "90",
"source": "Red Hat CSAF VEX",
"status": "final",
"title": "kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep()",
"url": "https://security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-31530.json",
"version": "3"
},
"suse_vex": {
"aggregate_severity": "moderate",
"current_release_date": "2026-07-15T05:21:52Z",
"cve": "CVE-2026-31530",
"id": "CVE-2026-31530",
"initial_release_date": "2026-04-23T01:24:49Z",
"product_status:known_affected": "131",
"product_status:known_not_affected": "184",
"source": "SUSE CSAF VEX",
"status": "interim",
"title": "SUSE CVE CVE-2026-31530",
"url": "https://ftp.suse.com/pub/projects/security/csaf-vex/cve-2026-31530.json",
"version": "5"
}
}
}
MSRC_CVE-2026-31530
Vulnerability from csaf_microsoft - Published: 2026-04-02 00:00 - Updated: 2026-04-30 01:47| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 17084-2 | — |
None Available
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: 17084-1 | — |
| URL | Category |
|---|---|
| https://msrc.microsoft.com/csaf/vex/2026/msrc_cve… | self |
| https://support.microsoft.com/lifecycle | external |
| https://www.first.org/cvss | external |
| https://msrc.microsoft.com/csaf/vex/2026/msrc_cve… | self |
{
"document": {
"category": "csaf_vex",
"csaf_version": "2.0",
"distribution": {
"text": "Public",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en-US",
"notes": [
{
"category": "general",
"text": "To determine the support lifecycle for your software, see the Microsoft Support Lifecycle: https://support.microsoft.com/lifecycle",
"title": "Additional Resources"
},
{
"category": "legal_disclaimer",
"text": "The information provided in the Microsoft Knowledge Base is provided \\\"as is\\\" without warranty of any kind. Microsoft disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. In no event shall Microsoft Corporation or its suppliers be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages, even if Microsoft Corporation or its suppliers have been advised of the possibility of such damages. Some states do not allow the exclusion or limitation of liability for consequential or incidental damages so the foregoing limitation may not apply.",
"title": "Disclaimer"
}
],
"publisher": {
"category": "vendor",
"contact_details": "secure@microsoft.com",
"name": "Microsoft Security Response Center",
"namespace": "https://msrc.microsoft.com"
},
"references": [
{
"category": "self",
"summary": "CVE-2026-31530 cxl/port: Fix use after free of parent_port in cxl_detach_ep() - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2026-31530.json"
},
{
"category": "external",
"summary": "Microsoft Support Lifecycle",
"url": "https://support.microsoft.com/lifecycle"
},
{
"category": "external",
"summary": "Common Vulnerability Scoring System",
"url": "https://www.first.org/cvss"
}
],
"title": "cxl/port: Fix use after free of parent_port in cxl_detach_ep()",
"tracking": {
"current_release_date": "2026-04-30T01:47:15.000Z",
"generator": {
"date": "2026-04-30T08:42:48.144Z",
"engine": {
"name": "MSRC Generator",
"version": "1.0"
}
},
"id": "msrc_CVE-2026-31530",
"initial_release_date": "2026-04-02T00:00:00.000Z",
"revision_history": [
{
"date": "2026-04-23T01:08:49.000Z",
"legacy_version": "1",
"number": "1",
"summary": "Information published."
},
{
"date": "2026-04-23T14:39:58.000Z",
"legacy_version": "1.1",
"number": "2",
"summary": "Information published."
},
{
"date": "2026-04-24T01:38:39.000Z",
"legacy_version": "2",
"number": "3",
"summary": "Information published."
},
{
"date": "2026-04-29T14:45:44.000Z",
"legacy_version": "3",
"number": "4",
"summary": "Information published."
},
{
"date": "2026-04-30T01:47:15.000Z",
"legacy_version": "4",
"number": "5",
"summary": "Information published."
}
],
"status": "final",
"version": "5"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "3.0",
"product": {
"name": "Azure Linux 3.0",
"product_id": "17084"
}
}
],
"category": "product_name",
"name": "Azure Linux"
},
{
"branches": [
{
"category": "product_version_range",
"name": "azl3 kernel 0:6.6.130.1-3.azl3",
"product": {
"name": "azl3 kernel 0:6.6.130.1-3.azl3",
"product_id": "2"
}
}
],
"category": "product_name",
"name": "kernel"
},
{
"category": "product_name",
"name": "azl3 kernel 0:6.6.134.1-2.azl3",
"product": {
"name": "azl3 kernel 0:6.6.134.1-2.azl3",
"product_id": "1"
}
}
],
"category": "vendor",
"name": "Microsoft"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.130.1-3.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-2"
},
"product_reference": "2",
"relates_to_product_reference": "17084"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "azl3 kernel 0:6.6.134.1-2.azl3 as a component of Azure Linux 3.0",
"product_id": "17084-1"
},
"product_reference": "1",
"relates_to_product_reference": "17084"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-31530",
"flags": [
{
"label": "vulnerable_code_not_in_execute_path",
"product_ids": [
"17084-1"
]
}
],
"notes": [
{
"category": "general",
"text": "Linux",
"title": "Assigning CNA"
}
],
"product_status": {
"known_affected": [
"17084-2"
],
"known_not_affected": [
"17084-1"
]
},
"references": [
{
"category": "self",
"summary": "CVE-2026-31530 cxl/port: Fix use after free of parent_port in cxl_detach_ep() - VEX",
"url": "https://msrc.microsoft.com/csaf/vex/2026/msrc_cve-2026-31530.json"
}
],
"remediations": [
{
"category": "none_available",
"date": "2026-04-23T01:08:49.000Z",
"details": "There is no fix available for this vulnerability as of now",
"product_ids": [
"17084-2"
]
}
],
"title": "cxl/port: Fix use after free of parent_port in cxl_detach_ep()"
}
]
}
RHSA-2026:42919
Vulnerability from csaf_redhat - Published: 2026-07-21 18:24 - Updated: 2026-08-19 17:37A flaw was found in the Linux kernel's crypto AF_ALG subsystem. Memory allocated via sock_kmalloc() for crypto user API contexts is not zero-initialized, leaving fields with garbage values. Specifically, the 'inflight' variable can contain random data, causing af_alg_alloc_areq() to spuriously return -EBUSY errors when the garbage value is interpreted as true.
CWE-909 - Missing Initialization of Resource| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's trusted keys subsystem. A local user could exploit a memory leak in the `tpm2_load_cmd` function, which fails to free a temporary memory allocation in certain error scenarios. This memory leak could lead to a system-wide Denial of Service (DoS) by exhausting available memory resources.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A deadlock vulnerability was found in the Linux kernel's flexible proportions (fprop) code used for I/O writeback accounting. When a hardirq interrupts the seqcount write section in fprop_new_period() during softirq context, a reader in the hardirq handler can spin indefinitely waiting for the odd sequence number to become even, causing a system hang.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
In the Linux kernel, the following vulnerability has been resolved: cxl/port: Fix use after free of parent_port in cxl_detach_ep() cxl_detach_ep() is called during bottom-up removal when all CXL memory devices beneath a switch port have been removed. For each port in the hierarchy it locks both the port and its parent, removes the endpoint, and if the port is now empty, marks it dead and unregisters the port by calling delete_switch_port(). There are two places during this work where the parent_port may be used after freeing: First, a concurrent detach may have already processed a port by the time a second worker finds it via bus_find_device(). Without pinning parent_port, it may already be freed when we discover port->dead and attempt to unlock the parent_port. In a production kernel that's a silent memory corruption, with lock debug, it looks like this: []DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current()) []WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310 []Call Trace: []mutex_unlock+0xd/0x20 []cxl_detach_ep+0x180/0x400 [cxl_core] []devm_action_release+0x10/0x20 []devres_release_all+0xa8/0xe0 []device_unbind_cleanup+0xd/0xa0 []really_probe+0x1a6/0x3e0 Second, delete_switch_port() releases three devm actions registered against parent_port. The last of those is unregister_port() and it calls device_unregister() on the child port, which can cascade. If parent_port is now also empty the device core may unregister and free it too. So by the time delete_switch_port() returns, parent_port may be free, and the subsequent device_unlock(&parent_port->dev) operates on freed memory. The kernel log looks same as above, with a different offset in cxl_detach_ep(). Both of these issues stem from the absence of a lifetime guarantee between a child port and its parent port. Establish a lifetime rule for ports: child ports hold a reference to their parent device until release. Take the reference when the port is allocated and drop it when released. This ensures the parent is valid for the full lifetime of the child and eliminates the use after free window in cxl_detach_ep(). This is easily reproduced with a reload of cxl_acpi in QEMU with CXL devices present.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's `xfrm` (IPSec framework) subsystem. This vulnerability, a use-after-free, occurs when the system incorrectly manages memory related to security policies, specifically during the deletion of `xfrm_state` lists. An attacker with local access could exploit this flaw by triggering specific operations, leading to memory corruption. This could cause the system to become unstable, resulting in crashes or a Denial of Service (DoS), and potentially allow for unauthorized access to sensitive information or increased privileges.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's fanotify subsystem. This vulnerability allows for a bypass of permission checks because the `fsnotify_get_mark_safe()` function may incorrectly return false for marks on unrelated groups. This could enable an attacker to perform unauthorized actions by circumventing intended security restrictions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel. A race condition in the Direct Rendering Manager (DRM) subsystem's `change_handle` function could allow a local attacker to trigger a use-after-free vulnerability. This occurs when a concurrent `gem_close` operation removes one handle while another remains dangling. Successful exploitation of this flaw could lead to arbitrary code execution or privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel, specifically within the drm/xe/dma-buf component. This Use-After-Free (UAF) vulnerability occurs due to an issue in a retry loop, where a buffer object is prematurely freed on error. An attacker could potentially exploit this to cause memory corruption, leading to system instability or, in some cases, arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel. Specifically, within the `drm/xe` graphics driver, two error handling issues in the `xe_exec_queue_create_ioctl()` function could lead to memory corruption. This could result in a dangling pointer or a use-after-free vulnerability. A local attacker could potentially exploit these issues to cause a system crash (denial of service) or gain elevated privileges.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's ice network driver. An error in the driver's handling of network packet transmission, specifically when ice_tso() or ice_tx_csum() functions fail, can lead to a double-free of a network buffer (skb). This occurs because a transmit buffer (tx_buf) may still point to an already freed buffer. If the network interface is subsequently brought down, this double-free can be triggered, potentially leading to a system crash or denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Linux kernel's Bluetooth Logical Link Control and Adaptation Protocol (L2CAP) implementation. A remote Bluetooth Low Energy (BLE) device can exploit this by sending a specially crafted L2CAP ECRED reconfiguration response. This can lead to the corruption of the channel list, potentially causing a Denial of Service (DoS) by making the system unstable or unresponsive. The vulnerability is due to a missing channel lock when a channel is deleted.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 | — |
Vendor Fix
fix
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for kernel is now available for Red Hat Enterprise Linux 10.\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: crypto: af_alg - zero initialize memory allocated via sock_kmalloc (CVE-2025-71113)\n\n* kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd (CVE-2025-71147)\n\n* kernel: flex_proportions: make fprop_new_period() hardirq safe (CVE-2026-23168)\n\n* kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)\n\n* kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete (CVE-2026-46116)\n\n* kernel: fanotify: fix false positive on permission events (CVE-2026-46150)\n\n* kernel: drm: Set old handle to NULL before prime swap in change_handle (CVE-2026-46215)\n\n* kernel: drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl() (CVE-2026-52976)\n\n* kernel: drm/xe/dma-buf: fix UAF with retry loop (CVE-2026-52950)\n\n* kernel: ice: fix double-free of tx_buf skb (CVE-2026-53009)\n\n* kernel: Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp (CVE-2026-53071)\n\n* kernel: can: bcm: thrtimer use-after-free during RX operation teardown ()\n\nBug Fix(es) and Enhancement(s):\n\n* nfsd_file slab cache objects remaining on kmem_cache_shutdown during nfsd teardown while running bz1477872 testcase (JIRA:RHEL-173103)\n\n* tools/lib/perf/Makefile: libperf includes appended after CFLAGS causes parallel build race, breaking kernel builds [rhel-10.2.z] (JIRA:RHEL-183975)\n\n* [RHEL10-debug]: BUG: KASAN: slab-use-after-free in __pv_queued_spin_lock_slowpath [rhel-10.2.z] (JIRA:RHEL-186311)\n\n* ice: driver update 2026-06, part 1 [rhel-10.2.z] (JIRA:RHEL-191324)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:42919",
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2429611",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429611"
},
{
"category": "external",
"summary": "2432366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2432366"
},
{
"category": "external",
"summary": "2439941",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439941"
},
{
"category": "external",
"summary": "2460644",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"category": "external",
"summary": "2482523",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482523"
},
{
"category": "external",
"summary": "2482612",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482612"
},
{
"category": "external",
"summary": "2482615",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482615"
},
{
"category": "external",
"summary": "2492284",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492284"
},
{
"category": "external",
"summary": "2492318",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492318"
},
{
"category": "external",
"summary": "2492390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492390"
},
{
"category": "external",
"summary": "2492458",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492458"
},
{
"category": "external",
"summary": "2502866",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2502866"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_42919.json"
}
],
"title": "Red Hat Security Advisory: kernel security, bug fix, and enhancement update",
"tracking": {
"current_release_date": "2026-08-19T17:37:57+00:00",
"generator": {
"date": "2026-08-19T17:37:57+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.16"
}
},
"id": "RHSA-2026:42919",
"initial_release_date": "2026-07-21T18:24:11+00:00",
"revision_history": [
{
"date": "2026-07-21T18:24:11+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-07-21T18:24:11+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-08-19T17:37:57+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 (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time (v. 10)",
"product": {
"name": "Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:10.2"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "rv-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "rv-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra-matched@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"product": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_id": "libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-211.37.1.el10_2?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra-matched@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_id": "libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-211.37.1.el10_2?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "rv-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "rv-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra-matched@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"product": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_id": "libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-211.37.1.el10_2?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "perf-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "perf-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "rtla-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "rv-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "rv-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra-matched@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:6.12.0-211.37.1.el10_2.s390x",
"product": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.s390x",
"product_id": "libperf-0:6.12.0-211.37.1.el10_2.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@6.12.0-211.37.1.el10_2?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"product": {
"name": "kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"product_id": "kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@6.12.0-211.37.1.el10_2?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"product": {
"name": "kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"product_id": "kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@6.12.0-211.37.1.el10_2?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:6.12.0-211.37.1.el10_2.src",
"product": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.src",
"product_id": "kernel-0:6.12.0-211.37.1.el10_2.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@6.12.0-211.37.1.el10_2?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:6.12.0-211.37.1.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch"
},
"product_reference": "kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "perf-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "perf-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "rtla-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "rv-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "rv-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10)",
"product_id": "AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "rv-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "AppStream-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.src as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src"
},
"product_reference": "kernel-0:6.12.0-211.37.1.el10_2.src",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch"
},
"product_reference": "kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 10)",
"product_id": "BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "BaseOS-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "libperf-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 10)",
"product_id": "CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "CRB-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 10)",
"product_id": "NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "NFV-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"relates_to_product_reference": "RT-10.2.Z"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 10)",
"product_id": "RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"relates_to_product_reference": "RT-10.2.Z"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-71113",
"cwe": {
"id": "CWE-909",
"name": "Missing Initialization of Resource"
},
"discovery_date": "2026-01-14T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2429611"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s crypto AF_ALG subsystem. Memory allocated via sock_kmalloc() for crypto user API contexts is not zero-initialized, leaving fields with garbage values. Specifically, the \u0027inflight\u0027 variable can contain random data, causing af_alg_alloc_areq() to spuriously return -EBUSY errors when the garbage value is interpreted as true.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: crypto: af_alg - zero initialize memory allocated via sock_kmalloc",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue manifests as random -EBUSY failures when using the kernel\u0027s crypto socket interface, primarily affecting applications using AF_ALG for cryptographic operations. While the uninitialized memory causes functional issues, there is no evidence of exploitable information disclosure or code execution, making this primarily a reliability concern.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-71113"
},
{
"category": "external",
"summary": "RHBZ#2429611",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429611"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-71113",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-71113"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71113",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71113"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026011413-CVE-2025-71113-a5ec@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026011413-CVE-2025-71113-a5ec@gregkh/T"
}
],
"release_date": "2026-01-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "kernel: crypto: af_alg - zero initialize memory allocated via sock_kmalloc"
},
{
"cve": "CVE-2025-71147",
"cwe": {
"id": "CWE-772",
"name": "Missing Release of Resource after Effective Lifetime"
},
"discovery_date": "2026-01-23T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2432366"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s trusted keys subsystem. A local user could exploit a memory leak in the `tpm2_load_cmd` function, which fails to free a temporary memory allocation in certain error scenarios. This memory leak could lead to a system-wide Denial of Service (DoS) by exhausting available memory resources.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-71147"
},
{
"category": "external",
"summary": "RHBZ#2432366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2432366"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-71147",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-71147"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-71147",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-71147"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026012327-CVE-2025-71147-a296@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026012327-CVE-2025-71147-a296@gregkh/T"
}
],
"release_date": "2026-01-23T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd"
},
{
"cve": "CVE-2026-23168",
"cwe": {
"id": "CWE-833",
"name": "Deadlock"
},
"discovery_date": "2026-02-14T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2439941"
}
],
"notes": [
{
"category": "description",
"text": "A deadlock vulnerability was found in the Linux kernel\u0027s flexible proportions (fprop) code used for I/O writeback accounting. When a hardirq interrupts the seqcount write section in fprop_new_period() during softirq context, a reader in the hardirq handler can spin indefinitely waiting for the odd sequence number to become even, causing a system hang.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: flex_proportions: make fprop_new_period() hardirq safe",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This deadlock primarily affects FUSE filesystems that configure maximum writeback throughput fractions. Standard local filesystems rarely trigger this condition. The issue results in a denial of service (system hang) but cannot be exploited for code execution or data compromise.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-23168"
},
{
"category": "external",
"summary": "RHBZ#2439941",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439941"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-23168",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-23168"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-23168",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-23168"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026021420-CVE-2026-23168-0630@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026021420-CVE-2026-23168-0630@gregkh/T"
}
],
"release_date": "2026-02-14T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: flex_proportions: make fprop_new_period() hardirq safe"
},
{
"cve": "CVE-2026-31530",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-22T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460644"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\ncxl/port: Fix use after free of parent_port in cxl_detach_ep()\n\ncxl_detach_ep() is called during bottom-up removal when all CXL memory\ndevices beneath a switch port have been removed. For each port in the\nhierarchy it locks both the port and its parent, removes the endpoint,\nand if the port is now empty, marks it dead and unregisters the port\nby calling delete_switch_port(). There are two places during this work\nwhere the parent_port may be used after freeing:\n\nFirst, a concurrent detach may have already processed a port by the\ntime a second worker finds it via bus_find_device(). Without pinning\nparent_port, it may already be freed when we discover port-\u003edead and\nattempt to unlock the parent_port. In a production kernel that\u0027s a\nsilent memory corruption, with lock debug, it looks like this:\n\n[]DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current())\n[]WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310\n[]Call Trace:\n[]mutex_unlock+0xd/0x20\n[]cxl_detach_ep+0x180/0x400 [cxl_core]\n[]devm_action_release+0x10/0x20\n[]devres_release_all+0xa8/0xe0\n[]device_unbind_cleanup+0xd/0xa0\n[]really_probe+0x1a6/0x3e0\n\nSecond, delete_switch_port() releases three devm actions registered\nagainst parent_port. The last of those is unregister_port() and it\ncalls device_unregister() on the child port, which can cascade. If\nparent_port is now also empty the device core may unregister and free\nit too. So by the time delete_switch_port() returns, parent_port may\nbe free, and the subsequent device_unlock(\u0026parent_port-\u003edev) operates\non freed memory. The kernel log looks same as above, with a different\noffset in cxl_detach_ep().\n\nBoth of these issues stem from the absence of a lifetime guarantee\nbetween a child port and its parent port.\n\nEstablish a lifetime rule for ports: child ports hold a reference to\ntheir parent device until release. Take the reference when the port\nis allocated and drop it when released. This ensures the parent is\nvalid for the full lifetime of the child and eliminates the use after\nfree window in cxl_detach_ep().\n\nThis is easily reproduced with a reload of cxl_acpi in QEMU with CXL\ndevices present.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep()",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31530"
},
{
"category": "external",
"summary": "RHBZ#2460644",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31530",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31530"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31530",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31530"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042215-CVE-2026-31530-b6f5@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042215-CVE-2026-31530-b6f5@gregkh/T"
}
],
"release_date": "2026-04-22T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep()"
},
{
"cve": "CVE-2026-46116",
"cwe": {
"id": "CWE-763",
"name": "Release of Invalid Pointer or Reference"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482523"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s `xfrm` (IPSec framework) subsystem. This vulnerability, a use-after-free, occurs when the system incorrectly manages memory related to security policies, specifically during the deletion of `xfrm_state` lists. An attacker with local access could exploit this flaw by triggering specific operations, leading to memory corruption. This could cause the system to become unstable, resulting in crashes or a Denial of Service (DoS), and potentially allow for unauthorized access to sensitive information or increased privileges.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46116"
},
{
"category": "external",
"summary": "RHBZ#2482523",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482523"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46116",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46116"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46116",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46116"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052814-CVE-2026-46116-73b8@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052814-CVE-2026-46116-73b8@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete"
},
{
"cve": "CVE-2026-46150",
"cwe": {
"id": "CWE-280",
"name": "Improper Handling of Insufficient Permissions or Privileges"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482612"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s fanotify subsystem. This vulnerability allows for a bypass of permission checks because the `fsnotify_get_mark_safe()` function may incorrectly return false for marks on unrelated groups. This could enable an attacker to perform unauthorized actions by circumventing intended security restrictions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: fanotify: fix false positive on permission events",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate severity flaw in the Linux kernel\u0027s fanotify subsystem allows a local attacker to bypass security restrictions. An incorrect return value from `fsnotify_get_mark_safe()` can lead to unauthorized actions on Red Hat Enterprise Linux systems.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46150"
},
{
"category": "external",
"summary": "RHBZ#2482612",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482612"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46150",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46150"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46150",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46150"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052822-CVE-2026-46150-c96d@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052822-CVE-2026-46150-c96d@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: fanotify: fix false positive on permission events"
},
{
"cve": "CVE-2026-46215",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-05-28T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2482615"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel. A race condition in the Direct Rendering Manager (DRM) subsystem\u0027s `change_handle` function could allow a local attacker to trigger a use-after-free vulnerability. This occurs when a concurrent `gem_close` operation removes one handle while another remains dangling. Successful exploitation of this flaw could lead to arbitrary code execution or privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: drm: Set old handle to NULL before prime swap in change_handle",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Important flaw in the Linux kernel\u0027s Direct Rendering Manager (DRM) subsystem could allow a local attacker to achieve arbitrary code execution or privilege escalation due to a race condition in the `change_handle` function. This vulnerability arises from a use-after-free scenario when handling graphics memory, specifically when a `gem_close` operation occurs concurrently with handle changes, leaving a dangling reference.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-46215"
},
{
"category": "external",
"summary": "RHBZ#2482615",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482615"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-46215",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-46215"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-46215",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-46215"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026052836-CVE-2026-46215-4ede@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026052836-CVE-2026-46215-4ede@gregkh/T"
}
],
"release_date": "2026-05-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
},
{
"category": "workaround",
"details": "To mitigate this issue, prevent module drm from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: drm: Set old handle to NULL before prime swap in change_handle"
},
{
"cve": "CVE-2026-52950",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-06-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2492318"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel, specifically within the drm/xe/dma-buf component. This Use-After-Free (UAF) vulnerability occurs due to an issue in a retry loop, where a buffer object is prematurely freed on error. An attacker could potentially exploit this to cause memory corruption, leading to system instability or, in some cases, arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: drm/xe/dma-buf: fix UAF with retry loop",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-52950"
},
{
"category": "external",
"summary": "RHBZ#2492318",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492318"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-52950",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-52950"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-52950",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-52950"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026062433-CVE-2026-52950-9c1a@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026062433-CVE-2026-52950-9c1a@gregkh/T"
}
],
"release_date": "2026-06-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: drm/xe/dma-buf: fix UAF with retry loop"
},
{
"cve": "CVE-2026-52976",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-06-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2492284"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel. Specifically, within the `drm/xe` graphics driver, two error handling issues in the `xe_exec_queue_create_ioctl()` function could lead to memory corruption. This could result in a dangling pointer or a use-after-free vulnerability. A local attacker could potentially exploit these issues to cause a system crash (denial of service) or gain elevated privileges.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl()",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-52976"
},
{
"category": "external",
"summary": "RHBZ#2492284",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492284"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-52976",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-52976"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-52976",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-52976"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52976-d615@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026062440-CVE-2026-52976-d615@gregkh/T"
}
],
"release_date": "2026-06-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl()"
},
{
"cve": "CVE-2026-53009",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2026-06-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2492390"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s ice network driver. An error in the driver\u0027s handling of network packet transmission, specifically when ice_tso() or ice_tx_csum() functions fail, can lead to a double-free of a network buffer (skb). This occurs because a transmit buffer (tx_buf) may still point to an already freed buffer. If the network interface is subsequently brought down, this double-free can be triggered, potentially leading to a system crash or denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: ice: fix double-free of tx_buf skb",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A double free can occur in the Intel ice TX path when ice_xmit_frame_ring() stores an skb in the first tx_buf and marks it as ICE_TX_BUF_SKB, then an ice_tso() or ice_tx_csum() failure drops and frees the skb while the tx_buf still points to it. If no later packet overwrites that descriptor before the interface or TX ring is cleaned, ice_clean_tx_ring() can free the same skb again. For the CVSS the PR:L because a local user or process that can transmit traffic through an affected ice interface may reach the TX path, although reliable triggering also depends on forcing an offload error and a later cleanup window.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-53009"
},
{
"category": "external",
"summary": "RHBZ#2492390",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492390"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-53009",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-53009"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53009",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53009"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53009-4fef@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026062449-CVE-2026-53009-4fef@gregkh/T"
}
],
"release_date": "2026-06-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
},
{
"category": "workaround",
"details": "To mitigate this issue, prevent module ice from being loaded. Please see https://access.redhat.com/solutions/41278 for how to blacklist a kernel module to prevent it from loading automatically.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: ice: fix double-free of tx_buf skb"
},
{
"cve": "CVE-2026-53071",
"cwe": {
"id": "CWE-416",
"name": "Use After Free"
},
"discovery_date": "2026-06-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2492458"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s Bluetooth Logical Link Control and Adaptation Protocol (L2CAP) implementation. A remote Bluetooth Low Energy (BLE) device can exploit this by sending a specially crafted L2CAP ECRED reconfiguration response. This can lead to the corruption of the channel list, potentially causing a Denial of Service (DoS) by making the system unstable or unresponsive. The vulnerability is due to a missing channel lock when a channel is deleted.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Bluetooth L2CAP ECRED reconfiguration response handling can call l2cap_chan_del() without holding the channel lock while another thread may be iterating the same channel list. A remote BLE peer in radio range can send a crafted ECRED reconfiguration response and trigger a race that may corrupt the L2CAP channel list, leading at least to a kernel crash or connection state corruption. The issue is adjacent network reachable rather than Internet reachable because Bluetooth radio proximity is required.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-53071"
},
{
"category": "external",
"summary": "RHBZ#2492458",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492458"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-53071",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-53071"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-53071",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-53071"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53071-bdae@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026062404-CVE-2026-53071-bdae@gregkh/T"
}
],
"release_date": "2026-06-24T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-07-21T18:24:11+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.",
"product_ids": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "ADJACENT_NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-64k-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debug-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-devel-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-doc-0:6.12.0-211.37.1.el10_2.noarch",
"AppStream-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:kernel-zfcpdump-devel-matched-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rtla-0:6.12.0-211.37.1.el10_2.x86_64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.aarch64",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.ppc64le",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.s390x",
"AppStream-10.2.Z:rv-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.src",
"BaseOS-10.2.Z:kernel-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-abi-stablelists-0:6.12.0-211.37.1.el10_2.noarch",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debug-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-modules-extra-matched-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:kernel-tools-libs-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:kernel-uki-virt-addons-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:kernel-zfcpdump-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-core-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:kernel-zfcpdump-modules-extra-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"BaseOS-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-debuginfo-common-ppc64le-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-debuginfo-common-s390x-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:kernel-tools-libs-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:kernel-zfcpdump-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.ppc64le",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.s390x",
"CRB-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"NFV-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-debuginfo-common-aarch64-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-debuginfo-common-x86_64-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-64k-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-64k-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debug-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-devel-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-core-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-rt-modules-extra-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:kernel-tools-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:libperf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.aarch64",
"RT-10.2.Z:python3-perf-debuginfo-0:6.12.0-211.37.1.el10_2.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp"
}
]
}
RHSA-2026:53329
Vulnerability from csaf_redhat - Published: 2026-08-11 10:47 - Updated: 2026-08-22 04:23A flaw was found in AMD Zen 2-based processors, affecting components such as the kernel and Xen hypervisor. Improper isolation of shared resources within the CPU operation cache could allow an attacker to corrupt instructions executed at a different privilege level. This could potentially result in privilege escalation, granting an attacker higher system access than intended.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
In the Linux kernel, the following vulnerability has been resolved: cxl/port: Fix use after free of parent_port in cxl_detach_ep() cxl_detach_ep() is called during bottom-up removal when all CXL memory devices beneath a switch port have been removed. For each port in the hierarchy it locks both the port and its parent, removes the endpoint, and if the port is now empty, marks it dead and unregisters the port by calling delete_switch_port(). There are two places during this work where the parent_port may be used after freeing: First, a concurrent detach may have already processed a port by the time a second worker finds it via bus_find_device(). Without pinning parent_port, it may already be freed when we discover port->dead and attempt to unlock the parent_port. In a production kernel that's a silent memory corruption, with lock debug, it looks like this: []DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current()) []WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310 []Call Trace: []mutex_unlock+0xd/0x20 []cxl_detach_ep+0x180/0x400 [cxl_core] []devm_action_release+0x10/0x20 []devres_release_all+0xa8/0xe0 []device_unbind_cleanup+0xd/0xa0 []really_probe+0x1a6/0x3e0 Second, delete_switch_port() releases three devm actions registered against parent_port. The last of those is unregister_port() and it calls device_unregister() on the child port, which can cascade. If parent_port is now also empty the device core may unregister and free it too. So by the time delete_switch_port() returns, parent_port may be free, and the subsequent device_unlock(&parent_port->dev) operates on freed memory. The kernel log looks same as above, with a different offset in cxl_detach_ep(). Both of these issues stem from the absence of a lifetime guarantee between a child port and its parent port. Establish a lifetime rule for ports: child ports hold a reference to their parent device until release. Take the reference when the port is allocated and drop it when released. This ensures the parent is valid for the full lifetime of the child and eliminates the use after free window in cxl_detach_ep(). This is easily reproduced with a reload of cxl_acpi in QEMU with CXL devices present.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in the Linux kernel's memory management subsystem. This issue occurs when the kernel's memory allocator attempts to zero out newly allocated memory, but an incorrect check prevents the full memory region from being cleared under specific configurations. This can lead to memory not being fully zeroed as intended, potentially allowing a local attacker to access sensitive information from previously used memory regions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
A flaw was found in Open vSwitch in the Linux kernel. Improper handling of oversized nested action attributes can lead to a truncated length field, which could be exploited by a local attacker to alter kernel memory. This alteration might result in the disclosure of sensitive information or a local privilege escalation (LPE).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x | — |
Vendor Fix
fix
|
|
| Unresolved product id: CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 | — |
Vendor Fix
fix
|
{
"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.\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: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)\n\n* kernel: xen: AMD Zen 2 Processors: Privilege escalation via improper CPU cache isolation (CVE-2025-54518)\n\n* kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled (CVE-2026-64368)\n\n* kernel: net: openvswitch: reject oversized nested action attrs (CVE-2026-64531)\n\nBug Fix(es) and Enhancement(s):\n\n* Kernel oops after increasing max number of mac addresses of a mlx5 VF [rhel-9.8.z] (JIRA:RHEL-213036)\n\n* RHEL9.4 - s390/pkey: Check length in pkey_pckmo handler implementation [rhel-9.8.z] (JIRA:RHEL-215578)\n\n* RHEL9.4 - s390/pkey: Check length in PKEY_VERIFYPROTK ioctl [rhel-9.8.z] (JIRA:RHEL-215580)\n\n* cifs: periodic IO errors when rename races with lease break (JIRA:RHEL-192999)\n\nFor more details about the security issue(s), including the impact, a CVSS score, acknowledgments, and other related information, refer to the CVE page(s) listed in the References section.",
"title": "Details"
},
{
"category": "legal_disclaimer",
"text": "This content is licensed under the Creative Commons Attribution 4.0 International License (https://creativecommons.org/licenses/by/4.0/). If you distribute this content, or a modified version of it, you must provide attribution to Red Hat Inc. and provide a link to the original.",
"title": "Terms of Use"
}
],
"publisher": {
"category": "vendor",
"contact_details": "https://access.redhat.com/security/team/contact/",
"issuing_authority": "Red Hat Product Security is responsible for vulnerability handling across all Red Hat products and services.",
"name": "Red Hat Product Security",
"namespace": "https://www.redhat.com"
},
"references": [
{
"category": "self",
"summary": "https://access.redhat.com/errata/RHSA-2026:53329",
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2460644",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"category": "external",
"summary": "2477784",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477784"
},
{
"category": "external",
"summary": "2507213",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507213"
},
{
"category": "external",
"summary": "2507402",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507402"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_53329.json"
}
],
"title": "Red Hat Security Advisory: kernel security, bug fix, and enhancement update",
"tracking": {
"current_release_date": "2026-08-22T04:23:30+00:00",
"generator": {
"date": "2026-08-22T04:23:30+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.3.16"
}
},
"id": "RHSA-2026:53329",
"initial_release_date": "2026-08-11T10:47:00+00:00",
"revision_history": [
{
"date": "2026-08-11T10:47:00+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-08-11T10:47:00+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-08-22T04:23:30+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 (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:enterprise_linux:9::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::crb"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::nfv"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux Real Time (v. 9)",
"product": {
"name": "Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:enterprise_linux:9::realtime"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-core@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-modules-extra@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-s390x@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "libperf-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-zfcpdump-devel-matched@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "perf-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "perf-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "rtla-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.38.1.el9_8.s390x",
"product": {
"name": "rv-0:5.14.0-687.38.1.el9_8.s390x",
"product_id": "rv-0:5.14.0-687.38.1.el9_8.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.38.1.el9_8?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.38.1.el9_8.src",
"product": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.src",
"product_id": "kernel-0:5.14.0-687.38.1.el9_8.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.38.1.el9_8?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-aarch64@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-debug-devel-matched@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-64k-devel-matched@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "rv-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "rv-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-64k-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-687.38.1.el9_8?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-ppc64le@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"product": {
"name": "rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_id": "rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.38.1.el9_8?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-uki-virt@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-modules-extra@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-uki-virt-addons@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debuginfo-common-x86_64@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf-debuginfo@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-tools-libs-devel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/libperf@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-debug-devel-matched@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-devel-matched@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/perf@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-perf@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rtla@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "rv-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "rv-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "rv-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/rv@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-devel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-debug-modules-extra@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-devel@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-core@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_id": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-rt-modules-extra@5.14.0-687.38.1.el9_8?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"product": {
"name": "kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"product_id": "kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-abi-stablelists@5.14.0-687.38.1.el9_8?arch=noarch"
}
}
},
{
"category": "product_version",
"name": "kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"product": {
"name": "kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"product_id": "kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/kernel-doc@5.14.0-687.38.1.el9_8?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-doc-0:5.14.0-687.38.1.el9_8.noarch as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch"
},
"product_reference": "kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "perf-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "perf-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "rtla-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rtla-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "rv-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "rv-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "rv-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 9)",
"product_id": "AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "rv-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "AppStream-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.src as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src"
},
"product_reference": "kernel-0:5.14.0-687.38.1.el9_8.src",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch"
},
"product_reference": "kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux BaseOS (v. 9)",
"product_id": "BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "BaseOS-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "libperf-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux CodeReady Linux Builder (v. 9)",
"product_id": "CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "CRB-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time for NFV (v. 9)",
"product_id": "NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "NFV-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64 as a component of Red Hat Enterprise Linux Real Time (v. 9)",
"product_id": "RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
},
"product_reference": "python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"relates_to_product_reference": "RT-9.8.0.Z.MAIN.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-54518",
"cwe": {
"id": "CWE-1220",
"name": "Insufficient Granularity of Access Control"
},
"discovery_date": "2026-05-15T05:01:27.379831+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2477784"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in AMD Zen 2-based processors, affecting components such as the kernel and Xen hypervisor. Improper isolation of shared resources within the CPU operation cache could allow an attacker to corrupt instructions executed at a different privilege level. This could potentially result in privilege escalation, granting an attacker higher system access than intended.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: xen: AMD Zen 2 Processors: Privilege escalation via improper CPU cache isolation",
"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.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-54518"
},
{
"category": "external",
"summary": "RHBZ#2477784",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477784"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-54518",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-54518"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-54518",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-54518"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/05/12/15",
"url": "http://www.openwall.com/lists/oss-security/2026/05/12/15"
},
{
"category": "external",
"summary": "http://xenbits.xen.org/xsa/advisory-490.html",
"url": "http://xenbits.xen.org/xsa/advisory-490.html"
},
{
"category": "external",
"summary": "https://www.amd.com/en/resources/product-security/bulletin/AMD-SB-7052.html",
"url": "https://www.amd.com/en/resources/product-security/bulletin/AMD-SB-7052.html"
}
],
"release_date": "2026-05-15T03:06:30.822000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-11T10:47:00+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: xen: AMD Zen 2 Processors: Privilege escalation via improper CPU cache isolation"
},
{
"cve": "CVE-2026-31530",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-22T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2460644"
}
],
"notes": [
{
"category": "description",
"text": "In the Linux kernel, the following vulnerability has been resolved:\n\ncxl/port: Fix use after free of parent_port in cxl_detach_ep()\n\ncxl_detach_ep() is called during bottom-up removal when all CXL memory\ndevices beneath a switch port have been removed. For each port in the\nhierarchy it locks both the port and its parent, removes the endpoint,\nand if the port is now empty, marks it dead and unregisters the port\nby calling delete_switch_port(). There are two places during this work\nwhere the parent_port may be used after freeing:\n\nFirst, a concurrent detach may have already processed a port by the\ntime a second worker finds it via bus_find_device(). Without pinning\nparent_port, it may already be freed when we discover port-\u003edead and\nattempt to unlock the parent_port. In a production kernel that\u0027s a\nsilent memory corruption, with lock debug, it looks like this:\n\n[]DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current())\n[]WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310\n[]Call Trace:\n[]mutex_unlock+0xd/0x20\n[]cxl_detach_ep+0x180/0x400 [cxl_core]\n[]devm_action_release+0x10/0x20\n[]devres_release_all+0xa8/0xe0\n[]device_unbind_cleanup+0xd/0xa0\n[]really_probe+0x1a6/0x3e0\n\nSecond, delete_switch_port() releases three devm actions registered\nagainst parent_port. The last of those is unregister_port() and it\ncalls device_unregister() on the child port, which can cascade. If\nparent_port is now also empty the device core may unregister and free\nit too. So by the time delete_switch_port() returns, parent_port may\nbe free, and the subsequent device_unlock(\u0026parent_port-\u003edev) operates\non freed memory. The kernel log looks same as above, with a different\noffset in cxl_detach_ep().\n\nBoth of these issues stem from the absence of a lifetime guarantee\nbetween a child port and its parent port.\n\nEstablish a lifetime rule for ports: child ports hold a reference to\ntheir parent device until release. Take the reference when the port\nis allocated and drop it when released. This ensures the parent is\nvalid for the full lifetime of the child and eliminates the use after\nfree window in cxl_detach_ep().\n\nThis is easily reproduced with a reload of cxl_acpi in QEMU with CXL\ndevices present.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep()",
"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.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31530"
},
{
"category": "external",
"summary": "RHBZ#2460644",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31530",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31530"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31530",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31530"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026042215-CVE-2026-31530-b6f5@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026042215-CVE-2026-31530-b6f5@gregkh/T"
}
],
"release_date": "2026-04-22T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-11T10:47:00+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep()"
},
{
"cve": "CVE-2026-64368",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-07-25T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2507213"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Linux kernel\u0027s memory management subsystem. This issue occurs when the kernel\u0027s memory allocator attempts to zero out newly allocated memory, but an incorrect check prevents the full memory region from being cleared under specific configurations. This can lead to memory not being fully zeroed as intended, potentially allowing a local attacker to access sensitive information from previously used memory regions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled",
"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.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64368"
},
{
"category": "external",
"summary": "RHBZ#2507213",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507213"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64368",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64368"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64368",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64368"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026072522-CVE-2026-64368-014f@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026072522-CVE-2026-64368-014f@gregkh/T"
}
],
"release_date": "2026-07-25T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-11T10:47:00+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
}
],
"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.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled"
},
{
"cve": "CVE-2026-64531",
"cwe": {
"id": "CWE-130",
"name": "Improper Handling of Length Parameter Inconsistency"
},
"discovery_date": "2026-07-27T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2507402"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Open vSwitch in the Linux kernel. Improper handling of oversized nested action attributes can lead to a truncated length field, which could be exploited by a local attacker to alter kernel memory. This alteration might result in the disclosure of sensitive information or a local privilege escalation (LPE).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "kernel: net: openvswitch: reject oversized nested action attrs",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Note that Red Hat Enterprise Linux 9.6 and layered products which include the 9.6 kernel do not contain the commits that introduced this vulnerability.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-64531"
},
{
"category": "external",
"summary": "RHBZ#2507402",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507402"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-64531",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-64531"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-64531",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-64531"
},
{
"category": "external",
"summary": "https://lore.kernel.org/linux-cve-announce/2026072732-CVE-2026-64531-e4ce@gregkh/T",
"url": "https://lore.kernel.org/linux-cve-announce/2026072732-CVE-2026-64531-e4ce@gregkh/T"
}
],
"release_date": "2026-07-27T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-08-11T10:47:00+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\n\nhttps://access.redhat.com/articles/11258\n\nThe system must be rebooted for this update to take effect.\n\nRed Hat recommends treating all kernel errata as security-relevant. Given the kernel\u0027s fundamental role, any bug has a higher chance of impacting system security, even if that impact only becomes clear after a fix is published. Therefore, Red Hat prioritizes delivering fixes that improve our customers\u0027 overall security posture.\n\nBecause of this proactive approach, a patch may be associated with a CVE assignment at a future date. Retroactive CVE assignments are always documented in the corresponding errata and on Red Hat\u0027s CVE pages. We strongly advise against delaying updates, as doing so may leave your system exposed when protections are already available.",
"product_ids": [
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
],
"restart_required": {
"category": "machine"
},
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
}
],
"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.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-64k-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debug-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-devel-matched-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-doc-0:5.14.0-687.38.1.el9_8.noarch",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-devel-matched-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rtla-0:5.14.0-687.38.1.el9_8.x86_64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.aarch64",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.ppc64le",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.s390x",
"AppStream-9.8.0.Z.MAIN.EUS:rv-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.src",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-abi-stablelists-0:5.14.0-687.38.1.el9_8.noarch",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debug-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-tools-libs-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-uki-virt-addons-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-core-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-modules-extra-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"BaseOS-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-ppc64le-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-s390x-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:kernel-tools-libs-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:kernel-zfcpdump-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.ppc64le",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.s390x",
"CRB-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"NFV-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-aarch64-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-debuginfo-common-x86_64-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-64k-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debug-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-devel-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-core-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-rt-modules-extra-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:kernel-tools-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:libperf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.aarch64",
"RT-9.8.0.Z.MAIN.EUS:python3-perf-debuginfo-0:5.14.0-687.38.1.el9_8.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "kernel: net: openvswitch: reject oversized nested action attrs"
}
]
}
rlsa-2026:42919
Vulnerability from osv_rocky
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
-
kernel: crypto: af_alg - zero initialize memory allocated via sock_kmalloc (CVE-2025-71113)
-
kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd (CVE-2025-71147)
-
kernel: flex_proportions: make fprop_new_period() hardirq safe (CVE-2026-23168)
-
kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)
-
kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete (CVE-2026-46116)
-
kernel: fanotify: fix false positive on permission events (CVE-2026-46150)
-
kernel: drm: Set old handle to NULL before prime swap in change_handle (CVE-2026-46215)
-
kernel: drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl() (CVE-2026-52976)
-
kernel: drm/xe/dma-buf: fix UAF with retry loop (CVE-2026-52950)
-
kernel: ice: fix double-free of tx_buf skb (CVE-2026-53009)
-
kernel: Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp (CVE-2026-53071)
-
kernel: can: bcm: thrtimer use-after-free during RX operation teardown ()
Bug Fix(es) and Enhancement(s):
-
nfsd_file slab cache objects remaining on kmem_cache_shutdown during nfsd teardown while running bz1477872 testcase (JIRA:Rocky Linux-173103)
-
tools/lib/perf/Makefile: libperf includes appended after CFLAGS causes parallel build race, breaking kernel builds [rhel-10.2.z] (JIRA:Rocky Linux-183975)
-
[Rocky Linux10-debug]: BUG: KASAN: slab-use-after-free in __pv_queued_spin_lock_slowpath [rhel-10.2.z] (JIRA:Rocky Linux-186311)
-
ice: driver update 2026-06, part 1 [rhel-10.2.z] (JIRA:Rocky Linux-191324)
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.
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:10",
"name": "kernel",
"purl": "pkg:rpm/rocky-linux/kernel?distro=rocky-linux-10\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:6.12.0-211.37.1.el10_2"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"details": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: crypto: af_alg - zero initialize memory allocated via sock_kmalloc (CVE-2025-71113)\n\n* kernel: Linux kernel: Denial of Service due to memory leak in tpm2_load_cmd (CVE-2025-71147)\n\n* kernel: flex_proportions: make fprop_new_period() hardirq safe (CVE-2026-23168)\n\n* kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)\n\n* kernel: xfrm: defensively unhash xfrm_state lists in __xfrm_state_delete (CVE-2026-46116)\n\n* kernel: fanotify: fix false positive on permission events (CVE-2026-46150)\n\n* kernel: drm: Set old handle to NULL before prime swap in change_handle (CVE-2026-46215)\n\n* kernel: drm/xe: Fix error cleanup in xe_exec_queue_create_ioctl() (CVE-2026-52976)\n\n* kernel: drm/xe/dma-buf: fix UAF with retry loop (CVE-2026-52950)\n\n* kernel: ice: fix double-free of tx_buf skb (CVE-2026-53009)\n\n* kernel: Bluetooth: l2cap: Add missing chan lock in l2cap_ecred_reconf_rsp (CVE-2026-53071)\n\n* kernel: can: bcm: thrtimer use-after-free during RX operation teardown ()\n\nBug Fix(es) and Enhancement(s):\n\n* nfsd_file slab cache objects remaining on kmem_cache_shutdown during nfsd teardown while running bz1477872 testcase (JIRA:Rocky Linux-173103)\n\n* tools/lib/perf/Makefile: libperf includes appended after CFLAGS causes parallel build race, breaking kernel builds [rhel-10.2.z] (JIRA:Rocky Linux-183975)\n\n* [Rocky Linux10-debug]: BUG: KASAN: slab-use-after-free in __pv_queued_spin_lock_slowpath [rhel-10.2.z] (JIRA:Rocky Linux-186311)\n\n* ice: driver update 2026-06, part 1 [rhel-10.2.z] (JIRA:Rocky Linux-191324)\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.",
"id": "RLSA-2026:42919",
"modified": "2026-08-06T06:10:00.352017Z",
"published": "2026-07-23T06:07:38.939859Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:42919"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2439941"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492284"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2429611"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492390"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482523"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492458"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2432366"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2492318"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482612"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2482615"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Important: kernel security, bug fix, and enhancement update",
"upstream": [
"CVE-2025-71113",
"CVE-2025-71147",
"CVE-2026-23168",
"CVE-2026-31530",
"CVE-2026-46116",
"CVE-2026-46150",
"CVE-2026-46215",
"CVE-2026-52950",
"CVE-2026-52976",
"CVE-2026-53009",
"CVE-2026-53071"
]
}
rlsa-2026:53329
Vulnerability from osv_rocky
The kernel packages contain the Linux kernel, the core of any Linux operating system.
Security Fix(es):
-
kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)
-
kernel: xen: AMD Zen 2 Processors: Privilege escalation via improper CPU cache isolation (CVE-2025-54518)
-
kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled (CVE-2026-64368)
-
kernel: net: openvswitch: reject oversized nested action attrs (CVE-2026-64531)
Bug Fix(es) and Enhancement(s):
-
Kernel oops after increasing max number of mac addresses of a mlx5 VF [rhel-9.8.z] (JIRA:Rocky Linux-213036)
-
Rocky Linux9.4 - s390/pkey: Check length in pkey_pckmo handler implementation [rhel-9.8.z] (JIRA:Rocky Linux-215578)
-
Rocky Linux9.4 - s390/pkey: Check length in PKEY_VERIFYPROTK ioctl [rhel-9.8.z] (JIRA:Rocky Linux-215580)
-
cifs: periodic IO errors when rename races with lease break (JIRA:Rocky Linux-192999)
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.
| URL | Type | |||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
||||||||||||||||||||
{
"affected": [
{
"package": {
"ecosystem": "Rocky Linux:9",
"name": "kernel",
"purl": "pkg:rpm/rocky-linux/kernel?distro=rocky-linux-9\u0026epoch=0"
},
"ranges": [
{
"database_specific": {
"yum_repository": "BaseOS"
},
"events": [
{
"introduced": "0"
},
{
"fixed": "0:5.14.0-687.38.1.el9_8"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"credits": [
{
"name": "Rocky Enterprise Software Foundation"
},
{
"name": "Red Hat"
}
],
"database_specific": {
"license": "CC-BY-4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"source_advisory": "RHSA-2026:53329"
},
"details": "The kernel packages contain the Linux kernel, the core of any Linux operating system.\n\nSecurity Fix(es):\n\n* kernel: cxl/port: Fix use after free of parent_port in cxl_detach_ep() (CVE-2026-31530)\n\n* kernel: xen: AMD Zen 2 Processors: Privilege escalation via improper CPU cache isolation (CVE-2025-54518)\n\n* kernel: mm/slab: do not limit zeroing to orig_size when only red zoning is enabled (CVE-2026-64368)\n\n* kernel: net: openvswitch: reject oversized nested action attrs (CVE-2026-64531)\n\nBug Fix(es) and Enhancement(s):\n\n* Kernel oops after increasing max number of mac addresses of a mlx5 VF [rhel-9.8.z] (JIRA:Rocky Linux-213036)\n\n* Rocky Linux9.4 - s390/pkey: Check length in pkey_pckmo handler implementation [rhel-9.8.z] (JIRA:Rocky Linux-215578)\n\n* Rocky Linux9.4 - s390/pkey: Check length in PKEY_VERIFYPROTK ioctl [rhel-9.8.z] (JIRA:Rocky Linux-215580)\n\n* cifs: periodic IO errors when rename races with lease break (JIRA:Rocky Linux-192999)\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.",
"id": "RLSA-2026:53329",
"modified": "2026-08-23T06:09:49.901291Z",
"published": "2026-08-12T06:06:45.472446Z",
"references": [
{
"type": "ADVISORY",
"url": "https://errata.rockylinux.org/RLSA-2026:53329"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2460644"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477784"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507213"
},
{
"type": "REPORT",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2507402"
},
{
"type": "ADVISORY",
"url": "https://access.redhat.com/errata/RHSA-2026:53329"
}
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
}
],
"summary": "Important: kernel security, bug fix, and enhancement update",
"upstream": [
"CVE-2025-54518",
"CVE-2026-31530",
"CVE-2026-64368",
"CVE-2026-64531"
]
}
ubuntu-cve-2026-31530
Vulnerability from osv_ubuntu
In the Linux kernel, the following vulnerability has been resolved: cxl/port: Fix use after free of parent_port in cxl_detach_ep() cxl_detach_ep() is called during bottom-up removal when all CXL memory devices beneath a switch port have been removed. For each port in the hierarchy it locks both the port and its parent, removes the endpoint, and if the port is now empty, marks it dead and unregisters the port by calling delete_switch_port(). There are two places during this work where the parent_port may be used after freeing: First, a concurrent detach may have already processed a port by the time a second worker finds it via bus_find_device(). Without pinning parent_port, it may already be freed when we discover port->dead and attempt to unlock the parent_port. In a production kernel that's a silent memory corruption, with lock debug, it looks like this: []DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current()) []WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310 []Call Trace: []mutex_unlock+0xd/0x20 []cxl_detach_ep+0x180/0x400 [cxl_core] []devm_action_release+0x10/0x20 []devres_release_all+0xa8/0xe0 []device_unbind_cleanup+0xd/0xa0 []really_probe+0x1a6/0x3e0 Second, delete_switch_port() releases three devm actions registered against parent_port. The last of those is unregister_port() and it calls device_unregister() on the child port, which can cascade. If parent_port is now also empty the device core may unregister and free it too. So by the time delete_switch_port() returns, parent_port may be free, and the subsequent device_unlock(&parent_port->dev) operates on freed memory. The kernel log looks same as above, with a different offset in cxl_detach_ep(). Both of these issues stem from the absence of a lifetime guarantee between a child port and its parent port. Establish a lifetime rule for ports: child ports hold a reference to their parent device until release. Take the reference when the port is allocated and drop it when released. This ensures the parent is valid for the full lifetime of the child and eliminates the use after free window in cxl_detach_ep(). This is easily reproduced with a reload of cxl_acpi in QEMU with CXL devices present.
| URL | Type | ||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||
{
"affected": [
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "block-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "crypto-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "crypto-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "dasd-extra-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "dasd-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fat-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fat-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "firewire-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "floppy-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-core-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-secondary-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "fs-secondary-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "input-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "input-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ipmi-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ipmi-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "irda-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "irda-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "kernel-image-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "kernel-image-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-cloud-tools-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-cloud-tools-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-headers-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-cloud-tools-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-tools-4.15.0-23",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-udebs-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-hwe-edge-udebs-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-unsigned-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-image-unsigned-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-modules-extra-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-source-4.15.0",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-generic",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-generic-lpae",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "linux-tools-4.15.0-23-lowlatency",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "md-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "md-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "message-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "mouse-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "mouse-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "multipath-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "multipath-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nfs-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nfs-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-pcmcia-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-shared-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-shared-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-usb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "nic-usb-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "parport-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "parport-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pata-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pcmcia-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "pcmcia-storage-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "plip-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "plip-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ppp-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "ppp-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "sata-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "sata-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "scsi-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "scsi-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "serial-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "storage-core-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "storage-core-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "usb-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "usb-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "virtio-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "vlan-modules-4.15.0-23-generic-di",
"binary_version": "4.15.0-23.25~16.04.1"
},
{
"binary_name": "vlan-modules-4.15.0-23-generic-lpae-di",
"binary_version": "4.15.0-23.25~16.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:16.04:LTS",
"name": "linux-hwe-edge",
"purl": "pkg:deb/ubuntu/linux-hwe-edge@4.15.0-23.25~16.04.1?arch=source\u0026distro=xenial"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.8.0-28.30~16.04.1",
"4.8.0-30.32~16.04.1",
"4.8.0-32.34~16.04.1",
"4.8.0-34.36~16.04.1",
"4.10.0-14.16~16.04.1",
"4.10.0-19.21~16.04.1",
"4.10.0-20.22~16.04.1",
"4.10.0-21.23~16.04.1",
"4.10.0-22.24~16.04.1",
"4.10.0-24.28~16.04.1",
"4.10.0-26.30~16.04.1",
"4.11.0-13.19~16.04.1",
"4.11.0-14.20~16.04.1",
"4.13.0-16.19~16.04.3",
"4.13.0-17.20~16.04.1",
"4.13.0-19.22~16.04.1",
"4.13.0-21.24~16.04.1",
"4.13.0-25.29~16.04.2",
"4.15.0-13.14~16.04.1",
"4.15.0-15.16~16.04.1",
"4.15.0-20.21~16.04.1",
"4.15.0-22.24~16.04.1",
"4.15.0-23.25~16.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.0-tools-5.0.0-1027",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-aws-headers-5.0.0-1027",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-buildinfo-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-headers-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-image-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-modules-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-modules-extra-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
},
{
"binary_name": "linux-tools-5.0.0-1027-aws",
"binary_version": "5.0.0-1027.30"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-aws-5.0",
"purl": "pkg:deb/ubuntu/linux-aws-5.0@5.0.0-1027.30?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-1021.24~18.04.1",
"5.0.0-1022.25~18.04.1",
"5.0.0-1023.26~18.04.1",
"5.0.0-1024.27~18.04.1",
"5.0.0-1025.28",
"5.0.0-1027.30"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.3-cloud-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-aws-5.3-headers-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-aws-5.3-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-buildinfo-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-cloud-tools-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-headers-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-image-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-modules-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-modules-extra-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
},
{
"binary_name": "linux-tools-5.3.0-1035-aws",
"binary_version": "5.3.0-1035.37"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-aws-5.3",
"purl": "pkg:deb/ubuntu/linux-aws-5.3@5.3.0-1035.37?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1016.17~18.04.1",
"5.3.0-1017.18~18.04.1",
"5.3.0-1019.21~18.04.1",
"5.3.0-1023.25~18.04.1",
"5.3.0-1028.30~18.04.1",
"5.3.0-1030.32~18.04.1",
"5.3.0-1032.34~18.04.2",
"5.3.0-1033.35",
"5.3.0-1034.36",
"5.3.0-1035.37"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-azure-headers-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-azure-tools-5.0.0-1036",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-buildinfo-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-headers-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-modules-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-modules-extra-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
},
{
"binary_name": "linux-tools-5.0.0-1036-azure",
"binary_version": "5.0.0-1036.38"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@5.0.0-1036.38?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1002.2",
"4.15.0-1003.3",
"4.15.0-1004.4",
"4.15.0-1008.8",
"4.15.0-1009.9",
"4.15.0-1012.12",
"4.15.0-1013.13",
"4.15.0-1014.14",
"4.15.0-1018.18",
"4.15.0-1019.19",
"4.15.0-1021.21",
"4.15.0-1022.23",
"4.15.0-1023.24",
"4.15.0-1025.26",
"4.15.0-1028.29",
"4.15.0-1030.31",
"4.15.0-1031.32",
"4.15.0-1032.33",
"4.15.0-1035.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.18.0-1011.11~18.04.1",
"4.18.0-1013.13~18.04.1",
"4.18.0-1014.14~18.04.1",
"4.18.0-1018.18~18.04.1",
"4.18.0-1019.19~18.04.1",
"4.18.0-1020.20~18.04.1",
"4.18.0-1023.24~18.04.1",
"4.18.0-1024.25~18.04.1",
"4.18.0-1025.27~18.04.1",
"5.0.0-1014.14~18.04.1",
"5.0.0-1016.17~18.04.1",
"5.0.0-1018.19~18.04.1",
"5.0.0-1020.21~18.04.1",
"5.0.0-1022.23~18.04.1",
"5.0.0-1023.24~18.04.1",
"5.0.0-1025.27~18.04.1",
"5.0.0-1027.29~18.04.1",
"5.0.0-1028.30~18.04.1",
"5.0.0-1029.31~18.04.1",
"5.0.0-1031.33",
"5.0.0-1032.34",
"5.0.0-1035.37",
"5.0.0-1036.38"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.3-cloud-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-azure-5.3-headers-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-azure-5.3-tools-5.3.0-1035",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-buildinfo-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-cloud-tools-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-headers-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-modules-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-modules-extra-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
},
{
"binary_name": "linux-tools-5.3.0-1035-azure",
"binary_version": "5.3.0-1035.36"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure-5.3",
"purl": "pkg:deb/ubuntu/linux-azure-5.3@5.3.0-1035.36?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1007.8~18.04.1",
"5.3.0-1008.9~18.04.1",
"5.3.0-1009.10~18.04.1",
"5.3.0-1010.11~18.04.1",
"5.3.0-1012.13~18.04.1",
"5.3.0-1013.14~18.04.1",
"5.3.0-1016.17~18.04.1",
"5.3.0-1018.19~18.04.1",
"5.3.0-1019.20~18.04.1",
"5.3.0-1020.21~18.04.1",
"5.3.0-1022.23~18.04.1",
"5.3.0-1028.29~18.04.1",
"5.3.0-1031.32~18.04.1",
"5.3.0-1032.33~18.04.1",
"5.3.0-1034.35~18.04.1",
"5.3.0-1035.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-edge-cloud-tools-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-azure-edge-tools-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-azure-headers-5.0.0-1012",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-headers-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-modules-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-modules-extra-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
},
{
"binary_name": "linux-tools-5.0.0-1012-azure",
"binary_version": "5.0.0-1012.12~18.04.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-azure-edge",
"purl": "pkg:deb/ubuntu/linux-azure-edge@5.0.0-1012.12~18.04.2?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.18.0-1006.6~18.04.1",
"4.18.0-1007.7~18.04.1",
"4.18.0-1008.8~18.04.1",
"5.0.0-1012.12~18.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-gcp-headers-5.0.0-1034",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-gcp-tools-5.0.0-1034",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-headers-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-modules-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-modules-extra-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
},
{
"binary_name": "linux-tools-5.0.0-1034-gcp",
"binary_version": "5.0.0-1034.35"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@5.0.0-1034.35?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1001.1",
"4.15.0-1003.3",
"4.15.0-1005.5",
"4.15.0-1006.6",
"4.15.0-1008.8",
"4.15.0-1009.9",
"4.15.0-1010.10",
"4.15.0-1014.14",
"4.15.0-1015.15",
"4.15.0-1017.18",
"4.15.0-1018.19",
"4.15.0-1019.20",
"4.15.0-1021.22",
"4.15.0-1023.24",
"4.15.0-1024.25",
"4.15.0-1025.26",
"4.15.0-1026.27",
"4.15.0-1027.28",
"4.15.0-1028.29",
"4.15.0-1029.31",
"4.15.0-1030.32",
"4.15.0-1032.34",
"4.15.0-1033.35",
"4.15.0-1034.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.15.0-1040.42",
"4.15.0-1042.45",
"4.15.0-1044.70",
"5.0.0-1020.20~18.04.1",
"5.0.0-1021.21~18.04.1",
"5.0.0-1025.26~18.04.1",
"5.0.0-1026.27~18.04.1",
"5.0.0-1028.29~18.04.1",
"5.0.0-1029.30~18.04.1",
"5.0.0-1031.32",
"5.0.0-1033.34",
"5.0.0-1034.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-gcp-5.3-headers-5.3.0-1032",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-gcp-5.3-tools-5.3.0-1032",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-headers-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-modules-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
},
{
"binary_name": "linux-tools-5.3.0-1032-gcp",
"binary_version": "5.3.0-1032.34~18.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gcp-5.3",
"purl": "pkg:deb/ubuntu/linux-gcp-5.3@5.3.0-1032.34~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1008.9~18.04.1",
"5.3.0-1009.10~18.04.1",
"5.3.0-1010.11~18.04.1",
"5.3.0-1012.13~18.04.1",
"5.3.0-1014.15~18.04.1",
"5.3.0-1016.17~18.04.1",
"5.3.0-1017.18~18.04.1",
"5.3.0-1018.19~18.04.1",
"5.3.0-1020.22~18.04.1",
"5.3.0-1026.28~18.04.1",
"5.3.0-1029.31~18.04.1",
"5.3.0-1030.32~18.04.1",
"5.3.0-1032.34~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-gke-4.15-headers-4.15.0-1079",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-gke-4.15-tools-4.15.0-1079",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-headers-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-image-unsigned-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-modules-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-modules-extra-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
},
{
"binary_name": "linux-tools-4.15.0-1079-gke",
"binary_version": "4.15.0-1079.84"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gke-4.15",
"purl": "pkg:deb/ubuntu/linux-gke-4.15@4.15.0-1079.84?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1030.32",
"4.15.0-1032.34",
"4.15.0-1033.35",
"4.15.0-1034.36",
"4.15.0-1036.38",
"4.15.0-1037.39",
"4.15.0-1040.42",
"4.15.0-1041.43",
"4.15.0-1042.44",
"4.15.0-1044.46",
"4.15.0-1045.48",
"4.15.0-1046.49",
"4.15.0-1048.51",
"4.15.0-1049.52",
"4.15.0-1050.53",
"4.15.0-1052.55",
"4.15.0-1055.58",
"4.15.0-1057.60",
"4.15.0-1058.61",
"4.15.0-1059.62",
"4.15.0-1063.66",
"4.15.0-1064.67",
"4.15.0-1066.69",
"4.15.0-1067.70",
"4.15.0-1069.72",
"4.15.0-1070.73",
"4.15.0-1072.76",
"4.15.0-1073.78",
"4.15.0-1074.79",
"4.15.0-1076.81",
"4.15.0-1077.82",
"4.15.0-1078.83",
"4.15.0-1079.84"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-gke-5.4-headers-5.4.0-1080",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-gke-5.4-tools-5.4.0-1080",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-headers-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-modules-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
},
{
"binary_name": "linux-tools-5.4.0-1080-gke",
"binary_version": "5.4.0-1080.86~18.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gke-5.4",
"purl": "pkg:deb/ubuntu/linux-gke-5.4@5.4.0-1080.86~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1025.25~18.04.1",
"5.4.0-1027.28~18.04.1",
"5.4.0-1029.31~18.04.1",
"5.4.0-1030.32~18.04.1",
"5.4.0-1032.34~18.04.1",
"5.4.0-1033.35~18.04.1",
"5.4.0-1035.37~18.04.1",
"5.4.0-1036.38~18.04.1",
"5.4.0-1037.39~18.04.1",
"5.4.0-1039.41~18.04.1",
"5.4.0-1040.42~18.04.1",
"5.4.0-1042.44~18.04.1",
"5.4.0-1043.45~18.04.1",
"5.4.0-1044.46~18.04.1",
"5.4.0-1046.48~18.04.1",
"5.4.0-1049.52~18.04.1",
"5.4.0-1051.54~18.04.1",
"5.4.0-1052.55~18.04.1",
"5.4.0-1053.56~18.04.1",
"5.4.0-1054.57~18.04.1",
"5.4.0-1055.58~18.04.1",
"5.4.0-1056.59~18.04.1",
"5.4.0-1057.60~18.04.1",
"5.4.0-1059.62~18.04.1",
"5.4.0-1061.64~18.04.1",
"5.4.0-1062.65~18.04.1",
"5.4.0-1063.66~18.04.1",
"5.4.0-1065.68~18.04.1",
"5.4.0-1066.69~18.04.1",
"5.4.0-1067.70~18.04.1",
"5.4.0-1068.71~18.04.1",
"5.4.0-1071.76~18.04.3",
"5.4.0-1072.77~18.04.1",
"5.4.0-1074.79~18.04.1",
"5.4.0-1076.82~18.04.1",
"5.4.0-1078.84~18.04.1",
"5.4.0-1080.86~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-cloud-tools-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-cloud-tools-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-headers-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-source-5.4.0",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-gkeop-5.4-tools-5.4.0-1051",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-headers-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-modules-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
},
{
"binary_name": "linux-tools-5.4.0-1051-gkeop",
"binary_version": "5.4.0-1051.54~18.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-gkeop-5.4",
"purl": "pkg:deb/ubuntu/linux-gkeop-5.4@5.4.0-1051.54~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1001.1",
"5.4.0-1003.3",
"5.4.0-1004.5",
"5.4.0-1005.6",
"5.4.0-1007.8~18.04.1",
"5.4.0-1008.9~18.04.1",
"5.4.0-1009.10~18.04.1",
"5.4.0-1010.11~18.04.1",
"5.4.0-1011.12~18.04.2",
"5.4.0-1012.13~18.04.1",
"5.4.0-1013.14~18.04.1",
"5.4.0-1014.15~18.04.1",
"5.4.0-1015.16~18.04.1",
"5.4.0-1016.17~18.04.1",
"5.4.0-1018.19~18.04.1",
"5.4.0-1021.22~18.04.1",
"5.4.0-1022.23~18.04.1",
"5.4.0-1023.24~18.04.1",
"5.4.0-1024.25~18.04.1",
"5.4.0-1025.26~18.04.1",
"5.4.0-1026.27~18.04.1",
"5.4.0-1027.28~18.04.1",
"5.4.0-1029.30~18.04.2",
"5.4.0-1031.32~18.04.1",
"5.4.0-1032.33~18.04.1",
"5.4.0-1033.34~18.04.1",
"5.4.0-1034.35~18.04.1",
"5.4.0-1036.37~18.04.1",
"5.4.0-1037.38~18.04.1",
"5.4.0-1038.39~18.04.1",
"5.4.0-1039.40~18.04.1",
"5.4.0-1040.41~18.04.1",
"5.4.0-1043.44~18.04.1",
"5.4.0-1046.48~18.04.1",
"5.4.0-1048.51~18.04.1",
"5.4.0-1049.52~18.04.1",
"5.4.0-1051.54~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "crypto-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fat-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "firewire-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "floppy-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fs-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "fs-secondary-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "input-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "ipmi-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "kernel-image-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-buildinfo-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-buildinfo-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-cloud-tools-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-cloud-tools-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-headers-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-headers-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-cloud-tools-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-headers-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-tools-5.3.0-76",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-hwe-udebs-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-unsigned-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-image-unsigned-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-modules-extra-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-source-5.3.0",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-tools-5.3.0-76-generic",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "linux-tools-5.3.0-76-lowlatency",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "md-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "message-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "mouse-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "multipath-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nfs-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-pcmcia-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-shared-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "nic-usb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "parport-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pata-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pcmcia-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "pcmcia-storage-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "plip-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "ppp-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "sata-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "scsi-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "serial-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "storage-core-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "usb-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "virtio-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
},
{
"binary_name": "vlan-modules-5.3.0-76-generic-di",
"binary_version": "5.3.0-76.72"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-hwe",
"purl": "pkg:deb/ubuntu/linux-hwe@5.3.0-76.72?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.18.0-13.14~18.04.1",
"4.18.0-14.15~18.04.1",
"4.18.0-15.16~18.04.1",
"4.18.0-16.17~18.04.1",
"4.18.0-17.18~18.04.1",
"4.18.0-18.19~18.04.1",
"4.18.0-20.21~18.04.1",
"4.18.0-21.22~18.04.1",
"4.18.0-22.23~18.04.1",
"4.18.0-24.25~18.04.1",
"4.18.0-25.26~18.04.1",
"5.0.0-23.24~18.04.1",
"5.0.0-25.26~18.04.1",
"5.0.0-27.28~18.04.1",
"5.0.0-29.31~18.04.1",
"5.0.0-31.33~18.04.1",
"5.0.0-32.34~18.04.2",
"5.0.0-35.38~18.04.1",
"5.0.0-36.39~18.04.1",
"5.0.0-37.40~18.04.1",
"5.3.0-26.28~18.04.1",
"5.3.0-28.30~18.04.1",
"5.3.0-40.32~18.04.1",
"5.3.0-42.34~18.04.1",
"5.3.0-45.37~18.04.1",
"5.3.0-46.38~18.04.1",
"5.3.0-51.44~18.04.2",
"5.3.0-53.47~18.04.1",
"5.3.0-59.53~18.04.1",
"5.3.0-61.55~18.04.1",
"5.3.0-62.56~18.04.1",
"5.3.0-64.58~18.04.1",
"5.3.0-65.59",
"5.3.0-66.60",
"5.3.0-67.61",
"5.3.0-68.63",
"5.3.0-69.65",
"5.3.0-70.66",
"5.3.0-72.68",
"5.3.0-73.69",
"5.3.0-74.70",
"5.3.0-75.71",
"5.3.0-76.72"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "block-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "crypto-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "crypto-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "dasd-extra-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "dasd-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fat-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fat-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "firewire-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "floppy-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-core-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-secondary-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "fs-secondary-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "input-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "input-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ipmi-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ipmi-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "kernel-image-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "kernel-image-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-buildinfo-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-cloud-tools-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-headers-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-cloud-tools-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-tools-5.3.0-24",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-udebs-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-hwe-edge-udebs-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-image-unsigned-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-modules-extra-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-source-5.3.0",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-generic",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-generic-lpae",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "linux-tools-5.3.0-24-lowlatency",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "md-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "md-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "message-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "mouse-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "mouse-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "multipath-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "multipath-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nfs-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nfs-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-pcmcia-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-shared-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-shared-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-usb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "nic-usb-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "parport-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "parport-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pata-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pcmcia-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "pcmcia-storage-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "plip-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "plip-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ppp-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "ppp-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "sata-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "sata-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "scsi-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "scsi-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "serial-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "storage-core-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "storage-core-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "usb-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "usb-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "virtio-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "vlan-modules-5.3.0-24-generic-di",
"binary_version": "5.3.0-24.26~18.04.2"
},
{
"binary_name": "vlan-modules-5.3.0-24-generic-lpae-di",
"binary_version": "5.3.0-24.26~18.04.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-hwe-edge",
"purl": "pkg:deb/ubuntu/linux-hwe-edge@5.3.0-24.26~18.04.2?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-15.16~18.04.1",
"5.0.0-16.17~18.04.1",
"5.0.0-17.18~18.04.1",
"5.0.0-19.20~18.04.1",
"5.0.0-20.21~18.04.1",
"5.3.0-19.20~18.04.2",
"5.3.0-22.24~18.04.1",
"5.3.0-23.25~18.04.1",
"5.3.0-23.25~18.04.2",
"5.3.0-24.26~18.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "crypto-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fat-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "firewire-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "floppy-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fs-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "fs-secondary-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "input-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "ipmi-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "irda-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "kernel-image-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-buildinfo-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-headers-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-image-unsigned-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-modules-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-oem-headers-4.15.0-1103",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-oem-tools-4.15.0-1103",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-tools-4.15.0-1103-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "linux-udebs-oem",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "md-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "message-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "mouse-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "multipath-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nfs-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-pcmcia-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-shared-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "nic-usb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "parport-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pata-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pcmcia-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "pcmcia-storage-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "plip-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "ppp-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "sata-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "scsi-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "serial-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "storage-core-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "usb-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "virtio-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
},
{
"binary_name": "vlan-modules-4.15.0-1103-oem-di",
"binary_version": "4.15.0-1103.114"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oem",
"purl": "pkg:deb/ubuntu/linux-oem@4.15.0-1103.114?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"4.15.0-1002.3",
"4.15.0-1004.5",
"4.15.0-1006.9",
"4.15.0-1008.11",
"4.15.0-1009.12",
"4.15.0-1012.15",
"4.15.0-1013.16",
"4.15.0-1015.18",
"4.15.0-1017.20",
"4.15.0-1018.21",
"4.15.0-1021.24",
"4.15.0-1024.29",
"4.15.0-1026.31",
"4.15.0-1028.33",
"4.15.0-1030.35",
"4.15.0-1033.38",
"4.15.0-1034.39",
"4.15.0-1035.40",
"4.15.0-1036.41",
"4.15.0-1038.43",
"4.15.0-1039.44",
"4.15.0-1043.48",
"4.15.0-1045.50",
"4.15.0-1050.57",
"4.15.0-1056.65",
"4.15.0-1057.66",
"4.15.0-1059.68",
"4.15.0-1063.72",
"4.15.0-1064.73",
"4.15.0-1065.75",
"4.15.0-1066.76",
"4.15.0-1067.77",
"4.15.0-1069.79",
"4.15.0-1073.83",
"4.15.0-1076.86",
"4.15.0-1079.89",
"4.15.0-1080.90",
"4.15.0-1081.91",
"4.15.0-1087.97",
"4.15.0-1090.100",
"4.15.0-1091.101",
"4.15.0-1093.103",
"4.15.0-1094.104",
"4.15.0-1096.106",
"4.15.0-1097.107",
"4.15.0-1099.109",
"4.15.0-1100.110",
"4.15.0-1101.112",
"4.15.0-1102.113",
"4.15.0-1103.114"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-headers-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-image-unsigned-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-modules-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-modules-extra-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-oracle-5.0-headers-5.0.0-1014",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-oracle-5.0-tools-5.0.0-1014",
"binary_version": "5.0.0-1014.19"
},
{
"binary_name": "linux-tools-5.0.0-1014-oracle",
"binary_version": "5.0.0-1014.19"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oracle-5.0",
"purl": "pkg:deb/ubuntu/linux-oracle-5.0@5.0.0-1014.19?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.0.0-1007.12~18.04.1",
"5.0.0-1008.13~18.04.1",
"5.0.0-1009.14~18.04.1",
"5.0.0-1010.15~18.04.1",
"5.0.0-1011.16",
"5.0.0-1013.18",
"5.0.0-1014.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-headers-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-image-unsigned-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-modules-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-modules-extra-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-oracle-5.3-headers-5.3.0-1030",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-oracle-5.3-tools-5.3.0-1030",
"binary_version": "5.3.0-1030.32~18.04.1"
},
{
"binary_name": "linux-tools-5.3.0-1030-oracle",
"binary_version": "5.3.0-1030.32~18.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:18.04:LTS",
"name": "linux-oracle-5.3",
"purl": "pkg:deb/ubuntu/linux-oracle-5.3@5.3.0-1030.32~18.04.1?arch=source\u0026distro=bionic"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1011.12~18.04.1",
"5.3.0-1013.14~18.04.1",
"5.3.0-1014.15~18.04.1",
"5.3.0-1016.18~18.04.1",
"5.3.0-1018.20~18.04.1",
"5.3.0-1024.26~18.04.1",
"5.3.0-1027.29~18.04.1",
"5.3.0-1028.30~18.04.1",
"5.3.0-1030.32~18.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.11-cloud-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-aws-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-aws-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-1028-aws",
"binary_version": "5.11.0-1028.31~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.11",
"purl": "pkg:deb/ubuntu/linux-aws-5.11@5.11.0-1028.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1009.9~20.04.2",
"5.11.0-1014.15~20.04.1",
"5.11.0-1016.17~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.2",
"5.11.0-1021.22~20.04.2",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.13-cloud-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-aws-5.13-headers-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-aws-5.13-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1031-aws",
"binary_version": "5.13.0-1031.35~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.13",
"purl": "pkg:deb/ubuntu/linux-aws-5.13@5.13.0-1031.35~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1008.9~20.04.2",
"5.13.0-1011.12~20.04.1",
"5.13.0-1012.13~20.04.1",
"5.13.0-1014.15~20.04.1",
"5.13.0-1017.19~20.04.1",
"5.13.0-1019.21~20.04.1",
"5.13.0-1021.23~20.04.2",
"5.13.0-1022.24~20.04.1",
"5.13.0-1023.25~20.04.1",
"5.13.0-1025.27~20.04.1",
"5.13.0-1028.31~20.04.1",
"5.13.0-1029.32~20.04.1",
"5.13.0-1031.35~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.8-cloud-tools-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-aws-5.8-headers-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-aws-5.8-tools-5.8.0-1042",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1042-aws",
"binary_version": "5.8.0-1042.44~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-aws-5.8",
"purl": "pkg:deb/ubuntu/linux-aws-5.8@5.8.0-1042.44~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1035.37~20.04.1",
"5.8.0-1038.40~20.04.1",
"5.8.0-1041.43~20.04.1",
"5.8.0-1042.44~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.11-cloud-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-azure-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-azure-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-buildinfo-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-cloud-tools-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-headers-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-modules-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
},
{
"binary_name": "linux-tools-5.11.0-1028-azure",
"binary_version": "5.11.0-1028.31~20.04.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.11",
"purl": "pkg:deb/ubuntu/linux-azure-5.11@5.11.0-1028.31~20.04.2?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1007.7~20.04.2",
"5.11.0-1012.13~20.04.1",
"5.11.0-1013.14~20.04.1",
"5.11.0-1015.16~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.13-cloud-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-azure-5.13-headers-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-azure-5.13-tools-5.13.0-1031",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1031-azure",
"binary_version": "5.13.0-1031.37~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.13",
"purl": "pkg:deb/ubuntu/linux-azure-5.13@5.13.0-1031.37~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1009.10~20.04.2",
"5.13.0-1012.14~20.04.1",
"5.13.0-1013.15~20.04.1",
"5.13.0-1014.16~20.04.1",
"5.13.0-1017.19~20.04.1",
"5.13.0-1021.24~20.04.1",
"5.13.0-1022.26~20.04.1",
"5.13.0-1023.27~20.04.1",
"5.13.0-1025.29~20.04.1",
"5.13.0-1028.33~20.04.1",
"5.13.0-1029.34~20.04.1",
"5.13.0-1031.37~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.8-cloud-tools-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-azure-5.8-headers-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-azure-5.8-tools-5.8.0-1043",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1043-azure",
"binary_version": "5.8.0-1043.46~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-5.8",
"purl": "pkg:deb/ubuntu/linux-azure-5.8@5.8.0-1043.46~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1033.35~20.04.1",
"5.8.0-1036.38~20.04.1",
"5.8.0-1039.42~20.04.1",
"5.8.0-1040.43~20.04.1",
"5.8.0-1041.44~20.04.1",
"5.8.0-1042.45~20.04.1",
"5.8.0-1043.46~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-5.4.0-1103-azure-fde",
"binary_version": "5.4.0-1103.109+cvm1.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@5.4.0-1103.109+cvm1.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1063.66+cvm2.2",
"5.4.0-1063.66+cvm3.2",
"5.4.0-1064.67+cvm1.1",
"5.4.0-1065.68+cvm2.1",
"5.4.0-1067.70+cvm1.1",
"5.4.0-1068.71+cvm1.1",
"5.4.0-1069.72+cvm1.1",
"5.4.0-1070.73+cvm1.1",
"5.4.0-1072.75+cvm1.1",
"5.4.0-1073.76+cvm1.1",
"5.4.0-1074.77+cvm1.1",
"5.4.0-1076.79+cvm1.1",
"5.4.0-1078.81+cvm1.1",
"5.4.0-1080.83+cvm1.1",
"5.4.0-1083.87+cvm1.1",
"5.4.0-1085.90+cvm1.1",
"5.4.0-1085.90+cvm2.1",
"5.4.0-1086.91+cvm1.1",
"5.4.0-1089.94+cvm1.2",
"5.4.0-1090.95+cvm1.1",
"5.4.0-1091.96+cvm1.1",
"5.4.0-1092.97+cvm1.1",
"5.4.0-1095.101+cvm1.1",
"5.4.0-1098.104+cvm1.1",
"5.4.0-1100.106+cvm1.1",
"5.4.0-1103.109+cvm1.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-gcp-5.11-headers-5.11.0-1029",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-gcp-5.11-tools-5.11.0-1029",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-headers-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-modules-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-modules-extra-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
},
{
"binary_name": "linux-tools-5.11.0-1029-gcp",
"binary_version": "5.11.0-1029.33~20.04.3"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.11",
"purl": "pkg:deb/ubuntu/linux-gcp-5.11@5.11.0-1029.33~20.04.3?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1009.10~20.04.1",
"5.11.0-1014.16~20.04.1",
"5.11.0-1017.19~20.04.1",
"5.11.0-1018.20~20.04.2",
"5.11.0-1020.22~20.04.1",
"5.11.0-1021.23~20.04.1",
"5.11.0-1022.24~20.04.1",
"5.11.0-1023.25~20.04.1",
"5.11.0-1024.26~20.04.1",
"5.11.0-1026.29~20.04.1",
"5.11.0-1028.32~20.04.1",
"5.11.0-1029.33~20.04.3"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-gcp-5.13-headers-5.13.0-1033",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-gcp-5.13-tools-5.13.0-1033",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1033-gcp",
"binary_version": "5.13.0-1033.40~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.13",
"purl": "pkg:deb/ubuntu/linux-gcp-5.13@5.13.0-1033.40~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1008.9~20.04.3",
"5.13.0-1012.15~20.04.1",
"5.13.0-1013.16~20.04.1",
"5.13.0-1015.18~20.04.1",
"5.13.0-1019.23~20.04.1",
"5.13.0-1021.25~20.04.1",
"5.13.0-1023.28~20.04.1",
"5.13.0-1024.29~20.04.1",
"5.13.0-1025.30~20.04.1",
"5.13.0-1027.32~20.04.1",
"5.13.0-1030.36~20.04.1",
"5.13.0-1031.37~20.04.1",
"5.13.0-1033.40~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-gcp-5.8-headers-5.8.0-1039",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-gcp-5.8-tools-5.8.0-1039",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-headers-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-modules-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-modules-extra-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
},
{
"binary_name": "linux-tools-5.8.0-1039-gcp",
"binary_version": "5.8.0-1039.41"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gcp-5.8",
"purl": "pkg:deb/ubuntu/linux-gcp-5.8@5.8.0-1039.41?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1032.34~20.04.1",
"5.8.0-1035.37~20.04.1",
"5.8.0-1038.40~20.04.1",
"5.8.0-1039.41"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-gke-headers-5.4.0-1105",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-gke-tools-5.4.0-1105",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-headers-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-modules-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-modules-extra-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
},
{
"binary_name": "linux-tools-5.4.0-1105-gke",
"binary_version": "5.4.0-1105.112"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gke",
"purl": "pkg:deb/ubuntu/linux-gke@5.4.0-1105.112?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1033.35",
"5.4.0-1035.37",
"5.4.0-1036.38",
"5.4.0-1037.39",
"5.4.0-1039.41",
"5.4.0-1041.43",
"5.4.0-1042.44",
"5.4.0-1043.45",
"5.4.0-1044.46",
"5.4.0-1046.48",
"5.4.0-1049.52",
"5.4.0-1051.54",
"5.4.0-1052.55",
"5.4.0-1053.56",
"5.4.0-1054.57",
"5.4.0-1055.58",
"5.4.0-1056.59",
"5.4.0-1057.60",
"5.4.0-1059.62",
"5.4.0-1061.64",
"5.4.0-1062.65",
"5.4.0-1063.66",
"5.4.0-1065.68",
"5.4.0-1066.69",
"5.4.0-1067.70",
"5.4.0-1068.71",
"5.4.0-1071.76",
"5.4.0-1072.77",
"5.4.0-1074.79",
"5.4.0-1076.82",
"5.4.0-1078.84",
"5.4.0-1080.86",
"5.4.0-1081.87",
"5.4.0-1083.89",
"5.4.0-1084.90",
"5.4.0-1086.93",
"5.4.0-1087.94",
"5.4.0-1090.97",
"5.4.0-1091.98",
"5.4.0-1094.101",
"5.4.0-1095.102",
"5.4.0-1096.103",
"5.4.0-1097.104",
"5.4.0-1098.105",
"5.4.0-1099.106",
"5.4.0-1100.107",
"5.4.0-1101.108",
"5.4.0-1102.109",
"5.4.0-1103.110",
"5.4.0-1104.111",
"5.4.0-1105.112"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-gke-5.15-headers-5.15.0-1039",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-gke-5.15-tools-5.15.0-1039",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-headers-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
},
{
"binary_name": "linux-tools-5.15.0-1039-gke",
"binary_version": "5.15.0-1039.44~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gke-5.15",
"purl": "pkg:deb/ubuntu/linux-gke-5.15@5.15.0-1039.44~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1011.14~20.04.1",
"5.15.0-1014.17~20.04.1",
"5.15.0-1015.18~20.04.1",
"5.15.0-1016.19~20.04.1",
"5.15.0-1019.23~20.04.1",
"5.15.0-1020.25~20.04.1",
"5.15.0-1023.28~20.04.2",
"5.15.0-1027.32~20.04.1",
"5.15.0-1028.33~20.04.1",
"5.15.0-1029.34~20.04.1",
"5.15.0-1031.36~20.04.1",
"5.15.0-1032.37~20.04.1",
"5.15.0-1033.38~20.04.1",
"5.15.0-1034.39~20.04.1",
"5.15.0-1036.41~20.04.1",
"5.15.0-1037.42~20.04.1",
"5.15.0-1038.43~20.04.1",
"5.15.0-1039.44~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-cloud-tools-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-cloud-tools-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-headers-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-source-5.4.0",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-gkeop-tools-5.4.0-1102",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-headers-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-image-unsigned-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-modules-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-modules-extra-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
},
{
"binary_name": "linux-tools-5.4.0-1102-gkeop",
"binary_version": "5.4.0-1102.106"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gkeop",
"purl": "pkg:deb/ubuntu/linux-gkeop@5.4.0-1102.106?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-1008.9",
"5.4.0-1009.10",
"5.4.0-1010.11",
"5.4.0-1011.12",
"5.4.0-1012.13",
"5.4.0-1013.14",
"5.4.0-1014.15",
"5.4.0-1015.16",
"5.4.0-1016.17",
"5.4.0-1018.19",
"5.4.0-1021.22",
"5.4.0-1022.23",
"5.4.0-1023.24",
"5.4.0-1024.25",
"5.4.0-1025.26",
"5.4.0-1026.27",
"5.4.0-1027.28",
"5.4.0-1029.30",
"5.4.0-1031.32",
"5.4.0-1032.33",
"5.4.0-1033.34",
"5.4.0-1034.35",
"5.4.0-1036.37",
"5.4.0-1037.38",
"5.4.0-1038.39",
"5.4.0-1039.40",
"5.4.0-1040.41",
"5.4.0-1043.44",
"5.4.0-1046.48",
"5.4.0-1048.51",
"5.4.0-1049.52",
"5.4.0-1051.54",
"5.4.0-1052.55",
"5.4.0-1053.56",
"5.4.0-1054.57",
"5.4.0-1056.60",
"5.4.0-1057.61",
"5.4.0-1060.64",
"5.4.0-1061.65",
"5.4.0-1062.66",
"5.4.0-1064.68",
"5.4.0-1065.69",
"5.4.0-1066.70",
"5.4.0-1067.71",
"5.4.0-1068.72",
"5.4.0-1069.73",
"5.4.0-1070.74",
"5.4.0-1071.75",
"5.4.0-1072.76",
"5.4.0-1073.77",
"5.4.0-1074.78",
"5.4.0-1075.79",
"5.4.0-1076.80",
"5.4.0-1077.81",
"5.4.0-1078.82",
"5.4.0-1079.83",
"5.4.0-1080.84",
"5.4.0-1081.85",
"5.4.0-1083.87",
"5.4.0-1084.88",
"5.4.0-1085.89",
"5.4.0-1086.90",
"5.4.0-1087.91",
"5.4.0-1088.92",
"5.4.0-1089.93",
"5.4.0-1090.94",
"5.4.0-1091.95",
"5.4.0-1092.96",
"5.4.0-1093.97",
"5.4.0-1094.98",
"5.4.0-1095.99",
"5.4.0-1096.100",
"5.4.0-1097.101",
"5.4.0-1098.102",
"5.4.0-1099.103",
"5.4.0-1100.104",
"5.4.0-1101.105",
"5.4.0-1102.106"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-cloud-tools-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-headers-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-gkeop-5.15-tools-5.15.0-1055",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-headers-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-modules-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
},
{
"binary_name": "linux-tools-5.15.0-1055-gkeop",
"binary_version": "5.15.0-1055.62~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-gkeop-5.15",
"purl": "pkg:deb/ubuntu/linux-gkeop-5.15@5.15.0-1055.62~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1003.5~20.04.2",
"5.15.0-1005.7~20.04.1",
"5.15.0-1007.10~20.04.1",
"5.15.0-1008.12~20.04.1",
"5.15.0-1011.15~20.04.2",
"5.15.0-1012.16~20.04.1",
"5.15.0-1013.17~20.04.1",
"5.15.0-1015.19~20.04.1",
"5.15.0-1016.21~20.04.1",
"5.15.0-1017.22~20.04.1",
"5.15.0-1018.23~20.04.1",
"5.15.0-1019.24~20.04.1",
"5.15.0-1020.25~20.04.1",
"5.15.0-1021.26~20.04.1",
"5.15.0-1022.27~20.04.1",
"5.15.0-1023.28~20.04.1",
"5.15.0-1024.29~20.04.1",
"5.15.0-1025.30~20.04.1",
"5.15.0-1026.31~20.04.1",
"5.15.0-1027.32~20.04.1",
"5.15.0-1028.33~20.04.1",
"5.15.0-1030.35~20.04.1",
"5.15.0-1031.37~20.04.1",
"5.15.0-1032.38~20.04.1",
"5.15.0-1033.39~20.04.1",
"5.15.0-1034.40~20.04.1",
"5.15.0-1035.41~20.04.1",
"5.15.0-1036.42~20.04.1",
"5.15.0-1037.43~20.04.1",
"5.15.0-1038.44~20.04.1",
"5.15.0-1039.45~20.04.1",
"5.15.0-1040.46~20.04.1",
"5.15.0-1043.50~20.04.1",
"5.15.0-1044.51~20.04.1",
"5.15.0-1045.52~20.04.1",
"5.15.0-1046.53~20.04.1",
"5.15.0-1047.54~20.04.1",
"5.15.0-1048.55~20.04.1",
"5.15.0-1049.56~20.04.1",
"5.15.0-1050.57~20.04.1",
"5.15.0-1051.58~20.04.1",
"5.15.0-1052.59~20.04.1",
"5.15.0-1053.60~20.04.1",
"5.15.0-1054.61~20.04.1",
"5.15.0-1055.62~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "block-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "block-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "crypto-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "dasd-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fat-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "floppy-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-core-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "input-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ipmi-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "kernel-image-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-cloud-tools-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-cloud-tools-common",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-headers-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-source-5.11.0",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-5.11.0-46",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-common",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-tools-host",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-hwe-5.11-udebs-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic-64k",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-generic-lpae",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-46-lowlatency",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "md-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "message-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "message-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "mouse-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "multipath-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nfs-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "parport-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pata-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "plip-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "ppp-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "sata-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "scsi-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "serial-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "storage-core-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "usb-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "virtio-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "virtio-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-64k-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-di",
"binary_version": "5.11.0-46.51~20.04.1"
},
{
"binary_name": "vlan-modules-5.11.0-46-generic-lpae-di",
"binary_version": "5.11.0-46.51~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.11",
"purl": "pkg:deb/ubuntu/linux-hwe-5.11@5.11.0-46.51~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-22.23~20.04.1",
"5.11.0-25.27~20.04.1",
"5.11.0-27.29~20.04.1",
"5.11.0-34.36~20.04.1",
"5.11.0-36.40~20.04.1",
"5.11.0-37.41~20.04.2",
"5.11.0-38.42~20.04.1",
"5.11.0-40.44~20.04.2",
"5.11.0-41.45~20.04.1",
"5.11.0-43.47~20.04.2",
"5.11.0-44.48~20.04.2",
"5.11.0-46.51~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "block-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "block-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "crypto-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "dasd-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fat-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "floppy-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-core-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "input-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ipmi-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "kernel-image-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-cloud-tools-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-cloud-tools-common",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-headers-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-source-5.13.0",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-5.13.0-52",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-common",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-tools-host",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-hwe-5.13-udebs-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic-64k",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-generic-lpae",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-52-lowlatency",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "md-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "message-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "message-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "mouse-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "multipath-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nfs-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "parport-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pata-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "plip-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "ppp-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "sata-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "scsi-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "serial-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "storage-core-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "usb-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "virtio-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "virtio-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-64k-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-di",
"binary_version": "5.13.0-52.59~20.04.1"
},
{
"binary_name": "vlan-modules-5.13.0-52-generic-lpae-di",
"binary_version": "5.13.0-52.59~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.13",
"purl": "pkg:deb/ubuntu/linux-hwe-5.13@5.13.0-52.59~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-21.21~20.04.1",
"5.13.0-22.22~20.04.1",
"5.13.0-23.23~20.04.2",
"5.13.0-25.26~20.04.1",
"5.13.0-27.29~20.04.1",
"5.13.0-28.31~20.04.1",
"5.13.0-30.33~20.04.1",
"5.13.0-35.40~20.04.1",
"5.13.0-37.42~20.04.1",
"5.13.0-39.44~20.04.1",
"5.13.0-40.45~20.04.1",
"5.13.0-41.46~20.04.1",
"5.13.0-44.49~20.04.1",
"5.13.0-48.54~20.04.1",
"5.13.0-51.58~20.04.1",
"5.13.0-52.59~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "block-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "block-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "dasd-extra-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "dasd-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "floppy-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-cloud-tools-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-cloud-tools-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-cloud-tools-common",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-headers-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-source-5.8.0",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-5.8.0-63",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-common",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-tools-host",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-hwe-5.8-udebs-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic-64k",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-generic-lpae",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-63-lowlatency",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-pcmcia-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pata-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pcmcia-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "pcmcia-storage-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "serial-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-64k-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-di",
"binary_version": "5.8.0-63.71~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-63-generic-lpae-di",
"binary_version": "5.8.0-63.71~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-hwe-5.8",
"purl": "pkg:deb/ubuntu/linux-hwe-5.8@5.8.0-63.71~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-23.24~20.04.1",
"5.8.0-25.26~20.04.1",
"5.8.0-28.30~20.04.1",
"5.8.0-29.31~20.04.1",
"5.8.0-31.33~20.04.1",
"5.8.0-33.36~20.04.1",
"5.8.0-34.37~20.04.2",
"5.8.0-36.40~20.04.1",
"5.8.0-38.43~20.04.1",
"5.8.0-40.45~20.04.1",
"5.8.0-41.46~20.04.1",
"5.8.0-43.49~20.04.1",
"5.8.0-44.50~20.04.1",
"5.8.0-45.51~20.04.1",
"5.8.0-48.54~20.04.1",
"5.8.0-49.55~20.04.1",
"5.8.0-50.56~20.04.1",
"5.8.0-53.60~20.04.1",
"5.8.0-55.62~20.04.1",
"5.8.0-59.66~20.04.1",
"5.8.0-63.71~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-cloud-tools-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-headers-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-cloud-tools-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-cloud-tools-common",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-headers-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-source-5.13.0",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-5.13.0-1017",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-common",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-intel-5.13-tools-host",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-modules-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-modules-extra-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
},
{
"binary_name": "linux-tools-5.13.0-1017-intel",
"binary_version": "5.13.0-1017.19"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-intel-5.13",
"purl": "pkg:deb/ubuntu/linux-intel-5.13@5.13.0-1017.19?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1007.7",
"5.13.0-1008.8",
"5.13.0-1009.9",
"5.13.0-1010.10",
"5.13.0-1011.11",
"5.13.0-1014.15",
"5.13.0-1017.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-headers-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-image-unsigned-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-modules-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-headers-5.10.0-1057",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-tools-5.10.0-1057",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-oem-5.10-tools-host",
"binary_version": "5.10.0-1057.61"
},
{
"binary_name": "linux-tools-5.10.0-1057-oem",
"binary_version": "5.10.0-1057.61"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.10",
"purl": "pkg:deb/ubuntu/linux-oem-5.10@5.10.0-1057.61?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.10.0-1008.9",
"5.10.0-1011.12",
"5.10.0-1013.14",
"5.10.0-1014.15",
"5.10.0-1016.17",
"5.10.0-1017.18",
"5.10.0-1019.20",
"5.10.0-1021.22",
"5.10.0-1022.23",
"5.10.0-1023.24",
"5.10.0-1025.26",
"5.10.0-1026.27",
"5.10.0-1029.30",
"5.10.0-1032.33",
"5.10.0-1033.34",
"5.10.0-1034.35",
"5.10.0-1038.40",
"5.10.0-1044.46",
"5.10.0-1045.47",
"5.10.0-1049.51",
"5.10.0-1050.52",
"5.10.0-1051.53",
"5.10.0-1052.54",
"5.10.0-1053.55",
"5.10.0-1055.58",
"5.10.0-1057.61"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-headers-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-modules-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-headers-5.13.0-1029",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-tools-5.13.0-1029",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-oem-5.13-tools-host",
"binary_version": "5.13.0-1029.36"
},
{
"binary_name": "linux-tools-5.13.0-1029-oem",
"binary_version": "5.13.0-1029.36"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.13",
"purl": "pkg:deb/ubuntu/linux-oem-5.13@5.13.0-1029.36?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1009.10",
"5.13.0-1010.11",
"5.13.0-1012.16",
"5.13.0-1014.18",
"5.13.0-1017.21",
"5.13.0-1019.23",
"5.13.0-1020.24",
"5.13.0-1021.25",
"5.13.0-1022.26",
"5.13.0-1026.32",
"5.13.0-1028.35",
"5.13.0-1029.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-headers-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-image-unsigned-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-modules-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-modules-iwlwifi-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-headers-5.14.0-1059",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-tools-5.14.0-1059",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-oem-5.14-tools-host",
"binary_version": "5.14.0-1059.67"
},
{
"binary_name": "linux-tools-5.14.0-1059-oem",
"binary_version": "5.14.0-1059.67"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.14",
"purl": "pkg:deb/ubuntu/linux-oem-5.14@5.14.0-1059.67?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.14.0-1004.4",
"5.14.0-1005.5",
"5.14.0-1007.7",
"5.14.0-1008.8",
"5.14.0-1010.10",
"5.14.0-1011.11",
"5.14.0-1013.13",
"5.14.0-1018.19",
"5.14.0-1020.22",
"5.14.0-1022.24",
"5.14.0-1024.26",
"5.14.0-1027.30",
"5.14.0-1029.32",
"5.14.0-1031.34",
"5.14.0-1032.35",
"5.14.0-1033.36",
"5.14.0-1034.37",
"5.14.0-1036.40",
"5.14.0-1038.42",
"5.14.0-1042.47",
"5.14.0-1044.49",
"5.14.0-1045.51",
"5.14.0-1046.53",
"5.14.0-1047.54",
"5.14.0-1048.55",
"5.14.0-1049.56",
"5.14.0-1050.57",
"5.14.0-1051.58",
"5.14.0-1052.59",
"5.14.0-1054.61",
"5.14.0-1055.62",
"5.14.0-1056.63",
"5.14.0-1057.64",
"5.14.0-1058.66",
"5.14.0-1059.67"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-headers-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-image-unsigned-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-modules-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-headers-5.6.0-1056",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-tools-5.6.0-1056",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-oem-5.6-tools-host",
"binary_version": "5.6.0-1056.60"
},
{
"binary_name": "linux-tools-5.6.0-1056-oem",
"binary_version": "5.6.0-1056.60"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oem-5.6",
"purl": "pkg:deb/ubuntu/linux-oem-5.6@5.6.0-1056.60?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.6.0-1007.7",
"5.6.0-1008.8",
"5.6.0-1010.10",
"5.6.0-1011.11",
"5.6.0-1013.13",
"5.6.0-1017.17",
"5.6.0-1018.18",
"5.6.0-1020.20",
"5.6.0-1021.21",
"5.6.0-1023.23",
"5.6.0-1026.26",
"5.6.0-1027.27",
"5.6.0-1028.28",
"5.6.0-1031.32",
"5.6.0-1032.33",
"5.6.0-1033.35",
"5.6.0-1034.36",
"5.6.0-1035.37",
"5.6.0-1036.39",
"5.6.0-1039.43",
"5.6.0-1042.46",
"5.6.0-1047.51",
"5.6.0-1048.52",
"5.6.0-1050.54",
"5.6.0-1052.56",
"5.6.0-1053.57",
"5.6.0-1054.58",
"5.6.0-1055.59",
"5.6.0-1056.60"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-headers-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-oracle-5.11-headers-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-oracle-5.11-tools-5.11.0-1028",
"binary_version": "5.11.0-1028.31~20.04.1"
},
{
"binary_name": "linux-tools-5.11.0-1028-oracle",
"binary_version": "5.11.0-1028.31~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.11",
"purl": "pkg:deb/ubuntu/linux-oracle-5.11@5.11.0-1028.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1008.8~20.04.1",
"5.11.0-1013.14~20.04.1",
"5.11.0-1016.17~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1019.20~20.04.1",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1025.27~20.04.1",
"5.11.0-1027.30~20.04.1",
"5.11.0-1028.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-headers-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-modules-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-oracle-5.13-headers-5.13.0-1036",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-oracle-5.13-tools-5.13.0-1036",
"binary_version": "5.13.0-1036.43~20.04.1"
},
{
"binary_name": "linux-tools-5.13.0-1036-oracle",
"binary_version": "5.13.0-1036.43~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.13",
"purl": "pkg:deb/ubuntu/linux-oracle-5.13@5.13.0-1036.43~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1011.13~20.04.2",
"5.13.0-1015.19~20.04.1",
"5.13.0-1016.20~20.04.1",
"5.13.0-1018.22~20.04.1",
"5.13.0-1021.26~20.04.1",
"5.13.0-1025.30~20.04.1",
"5.13.0-1027.32~20.04.1",
"5.13.0-1028.33~20.04.1",
"5.13.0-1030.35~20.04.1",
"5.13.0-1033.39~20.04.1",
"5.13.0-1034.40~20.04.1",
"5.13.0-1036.43~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-image-unsigned-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-oracle-5.8-headers-5.8.0-1038",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-oracle-5.8-tools-5.8.0-1038",
"binary_version": "5.8.0-1038.39~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-1038-oracle",
"binary_version": "5.8.0-1038.39~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-oracle-5.8",
"purl": "pkg:deb/ubuntu/linux-oracle-5.8@5.8.0-1038.39~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-1031.32~20.04.2",
"5.8.0-1033.34~20.04.1",
"5.8.0-1034.35~20.04.2",
"5.8.0-1037.38~20.04.1",
"5.8.0-1038.39~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-headers-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-image-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-modules-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-raspi2-headers-5.4.0-1006",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-raspi2-tools-5.4.0-1006",
"binary_version": "5.4.0-1006.6"
},
{
"binary_name": "linux-tools-5.4.0-1006-raspi2",
"binary_version": "5.4.0-1006.6"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-raspi2",
"purl": "pkg:deb/ubuntu/linux-raspi2@5.4.0-1006.6?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.3.0-1007.8",
"5.3.0-1014.16",
"5.3.0-1015.17",
"5.3.0-1017.19",
"5.4.0-1004.4",
"5.4.0-1006.6"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "crypto-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fat-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "firewire-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fs-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "fs-secondary-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "input-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "ipmi-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "kernel-image-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-buildinfo-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-headers-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-image-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-modules-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-modules-extra-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-riscv-headers-5.4.0-40",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-riscv-tools-5.4.0-40",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-tools-5.4.0-40-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "linux-udebs-generic",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "md-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "message-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "mouse-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "multipath-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nfs-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-shared-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "nic-usb-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "parport-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "pata-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "plip-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "ppp-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "sata-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "scsi-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "storage-core-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "usb-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "virtio-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
},
{
"binary_name": "vlan-modules-5.4.0-40-generic-di",
"binary_version": "5.4.0-40.45"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@5.4.0-40.45?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.4.0-24.28",
"5.4.0-26.30",
"5.4.0-27.31",
"5.4.0-28.32",
"5.4.0-30.34",
"5.4.0-31.35",
"5.4.0-33.37",
"5.4.0-34.38",
"5.4.0-36.41",
"5.4.0-37.42",
"5.4.0-39.44",
"5.4.0-40.45"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-headers-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-image-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-modules-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-modules-extra-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-riscv-5.11-headers-5.11.0-1031",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-riscv-5.11-tools-5.11.0-1031",
"binary_version": "5.11.0-1031.35"
},
{
"binary_name": "linux-tools-5.11.0-1031-generic",
"binary_version": "5.11.0-1031.35"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv-5.11",
"purl": "pkg:deb/ubuntu/linux-riscv-5.11@5.11.0-1031.35?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.11.0-1015.16~20.04.1",
"5.11.0-1017.18~20.04.1",
"5.11.0-1018.19~20.04.2",
"5.11.0-1020.21~20.04.1",
"5.11.0-1021.22~20.04.1",
"5.11.0-1022.23~20.04.1",
"5.11.0-1023.24~20.04.1",
"5.11.0-1024.25~20.04.1",
"5.11.0-1026.28~20.04.1",
"5.11.0-1028.31~20.04.1",
"5.11.0-1029.32~20.04.1",
"5.11.0-1030.34",
"5.11.0-1031.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "block-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "crypto-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fat-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "firewire-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fs-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "fs-secondary-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "input-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "ipmi-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "kernel-image-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-buildinfo-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-headers-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-image-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-modules-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-modules-extra-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-riscv-5.8-headers-5.8.0-29",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-riscv-5.8-tools-5.8.0-29",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-tools-5.8.0-29-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "linux-udebs-generic",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "md-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "message-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "mouse-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "multipath-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nfs-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-shared-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "nic-usb-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "parport-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "pata-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "plip-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "ppp-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "sata-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "scsi-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "storage-core-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "usb-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "virtio-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
},
{
"binary_name": "vlan-modules-5.8.0-29-generic-di",
"binary_version": "5.8.0-29.31~20.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:20.04:LTS",
"name": "linux-riscv-5.8",
"purl": "pkg:deb/ubuntu/linux-riscv-5.8@5.8.0-29.31~20.04.1?arch=source\u0026distro=focal"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.8.0-14.16~20.04.1",
"5.8.0-14.16~20.04.3",
"5.8.0-16.18~20.04.1",
"5.8.0-17.19~20.04.1",
"5.8.0-18.20~20.04.1",
"5.8.0-20.22~20.04.1",
"5.8.0-22.24~20.04.1",
"5.8.0-25.27~20.04.1",
"5.8.0-26.28~20.04.1",
"5.8.0-29.31~20.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-allwinner-5.19-headers-5.19.0-1015",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-allwinner-5.19-tools-5.19.0-1015",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-buildinfo-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1015-allwinner",
"binary_version": "5.19.0-1015.15~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-allwinner-5.19",
"purl": "pkg:deb/ubuntu/linux-allwinner-5.19@5.19.0-1015.15~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1007.7~22.04.1",
"5.19.0-1009.9~22.04.1",
"5.19.0-1010.10~22.04.1",
"5.19.0-1011.11~22.04.1",
"5.19.0-1012.12~22.04.1",
"5.19.0-1013.13~22.04.1",
"5.19.0-1014.14~22.04.1",
"5.19.0-1015.15~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-5.19-cloud-tools-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-aws-5.19-headers-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-aws-5.19-tools-5.19.0-1029",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-buildinfo-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1029-aws",
"binary_version": "5.19.0-1029.30~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-5.19",
"purl": "pkg:deb/ubuntu/linux-aws-5.19@5.19.0-1029.30~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1019.20~22.04.1",
"5.19.0-1020.21~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1024.25~22.04.1",
"5.19.0-1025.26~22.04.1",
"5.19.0-1026.27~22.04.1",
"5.19.0-1027.28~22.04.1",
"5.19.0-1028.29~22.04.1",
"5.19.0-1029.30~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.2-cloud-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-aws-6.2-headers-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-aws-6.2-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-aws",
"binary_version": "6.2.0-1018.18~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.2",
"purl": "pkg:deb/ubuntu/linux-aws-6.2@6.2.0-1018.18~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1005.5~22.04.1",
"6.2.0-1006.6~22.04.1",
"6.2.0-1007.7~22.04.1",
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.3",
"6.2.0-1010.10~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.5-cloud-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-aws-6.5-headers-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-aws-6.5-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1024-aws",
"binary_version": "6.5.0-1024.24~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.5",
"purl": "pkg:deb/ubuntu/linux-aws-6.5@6.5.0-1024.24~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1008.8~22.04.1",
"6.5.0-1010.10~22.04.1",
"6.5.0-1011.11~22.04.1",
"6.5.0-1012.12~22.04.1",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.2",
"6.5.0-1018.18~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1021.21~22.04.1",
"6.5.0-1022.22~22.04.1",
"6.5.0-1023.23~22.04.1",
"6.5.0-1024.24~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-6.8-cloud-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-aws-6.8-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-aws-6.8-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-aws-6.8",
"purl": "pkg:deb/ubuntu/linux-aws-6.8@6.8.0-1061.64~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.64~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1009.9~22.04.2",
"6.8.0-1010.10~22.04.2",
"6.8.0-1011.12~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.15~22.04.1",
"6.8.0-1015.16~22.04.1",
"6.8.0-1016.17~22.04.2",
"6.8.0-1017.18~22.04.1",
"6.8.0-1018.19~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1023.25~22.04.1",
"6.8.0-1024.26~22.04.1",
"6.8.0-1027.29~22.04.1",
"6.8.0-1028.30~22.04.1",
"6.8.0-1029.31~22.04.1",
"6.8.0-1030.32~22.04.1",
"6.8.0-1031.33~22.04.1",
"6.8.0-1032.34~22.04.1",
"6.8.0-1033.35~22.04.1",
"6.8.0-1035.37~22.04.1",
"6.8.0-1036.38~22.04.1",
"6.8.0-1039.41~22.04.1",
"6.8.0-1040.42~22.04.1",
"6.8.0-1041.43~22.04.1",
"6.8.0-1042.44~22.04.1",
"6.8.0-1043.45~22.04.1",
"6.8.0-1044.46~22.04.1",
"6.8.0-1045.47~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.1",
"6.8.0-1050.53~22.04.1",
"6.8.0-1051.54~22.04.1",
"6.8.0-1052.55~22.04.1",
"6.8.0-1053.56~22.04.1",
"6.8.0-1055.58~22.04.1",
"6.8.0-1057.60~22.04.1",
"6.8.0-1060.63~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-5.19-cloud-tools-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-azure-5.19-headers-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-azure-5.19-tools-5.19.0-1027",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-buildinfo-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-headers-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-modules-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-modules-extra-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
},
{
"binary_name": "linux-tools-5.19.0-1027-azure",
"binary_version": "5.19.0-1027.30~22.04.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-5.19",
"purl": "pkg:deb/ubuntu/linux-azure-5.19@5.19.0-1027.30~22.04.2?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1020.21~22.04.1",
"5.19.0-1021.22~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1025.28~22.04.1",
"5.19.0-1026.29~22.04.1",
"5.19.0-1027.30~22.04.2"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.2-cloud-tools-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-azure-6.2-headers-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-azure-6.2-tools-6.2.0-1019",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1019-azure",
"binary_version": "6.2.0-1019.19~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.2",
"purl": "pkg:deb/ubuntu/linux-azure-6.2@6.2.0-1019.19~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1005.5~22.04.1",
"6.2.0-1006.6~22.04.1",
"6.2.0-1007.7~22.04.1",
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.3",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1",
"6.2.0-1019.19~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.5-cloud-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-azure-6.5-headers-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-azure-6.5-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1025-azure",
"binary_version": "6.5.0-1025.26~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.5",
"purl": "pkg:deb/ubuntu/linux-azure-6.5@6.5.0-1025.26~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7~22.04.1",
"6.5.0-1009.9~22.04.1",
"6.5.0-1010.10~22.04.1",
"6.5.0-1011.11~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.1",
"6.5.0-1018.19~22.04.2",
"6.5.0-1019.20~22.04.1",
"6.5.0-1021.22~22.04.1",
"6.5.0-1022.23~22.04.1",
"6.5.0-1023.24~22.04.1",
"6.5.0-1024.25~22.04.1",
"6.5.0-1025.26~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-6.8-cloud-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-azure-6.8-headers-6.8.0-1063",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-azure-6.8-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-6.8",
"purl": "pkg:deb/ubuntu/linux-azure-6.8@6.8.0-1063.71~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1063.71~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1009.9~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1012.14~22.04.1",
"6.8.0-1013.15~22.04.1",
"6.8.0-1014.16~22.04.1",
"6.8.0-1015.17~22.04.2",
"6.8.0-1017.20~22.04.1",
"6.8.0-1018.21~22.04.1",
"6.8.0-1020.23~22.04.1",
"6.8.0-1021.25~22.04.1",
"6.8.0-1025.30~22.04.1",
"6.8.0-1026.31~22.04.1",
"6.8.0-1027.32~22.04.1",
"6.8.0-1028.33~22.04.1",
"6.8.0-1029.34~22.04.1",
"6.8.0-1030.35~22.04.1",
"6.8.0-1031.36~22.04.1",
"6.8.0-1034.39~22.04.1",
"6.8.0-1036.42~22.04.1",
"6.8.0-1040.46~22.04.1",
"6.8.0-1041.47~22.04.1",
"6.8.0-1044.50~22.04.1",
"6.8.0-1051.57~22.04.1",
"6.8.0-1052.58~22.04.1",
"6.8.0-1059.65~22.04.1",
"6.8.0-1062.69~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-5.19.0-1027-azure-fde",
"binary_version": "5.19.0-1027.30~22.04.2.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-5.19",
"purl": "pkg:deb/ubuntu/linux-azure-fde-5.19@5.19.0-1027.30~22.04.2.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1025.28~22.04.1.1",
"5.19.0-1026.29~22.04.1.1",
"5.19.0-1027.30~22.04.2.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-image-unsigned-6.2.0-1019-azure-fde",
"binary_version": "6.2.0-1019.19~22.04.1.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-6.2",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.2@6.2.0-1019.19~22.04.1.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1008.8~22.04.1.1",
"6.2.0-1009.9~22.04.3.1",
"6.2.0-1011.11~22.04.1.1",
"6.2.0-1012.12~22.04.1.1",
"6.2.0-1014.14~22.04.1.1",
"6.2.0-1015.15~22.04.1.1",
"6.2.0-1016.16~22.04.1.1",
"6.2.0-1017.17~22.04.1.1",
"6.2.0-1018.18~22.04.1.1",
"6.2.0-1019.19~22.04.1.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-fde-6.8-cloud-tools-6.8.0-1062",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-azure-fde-6.8-headers-6.8.0-1062",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-azure-fde-6.8-tools-6.8.0-1062",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-azure-fde-6.8",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.8@6.8.0-1062.69~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1062.69~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1041.48~22.04.1",
"6.8.0-1042.49~22.04.1",
"6.8.0-1044.51~22.04.1",
"6.8.0-1046.53~22.04.1",
"6.8.0-1053.60~22.04.1",
"6.8.0-1058.65~22.04.1",
"6.8.0-1061.68~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-gcp-5.19-headers-5.19.0-1030",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-gcp-5.19-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1030-gcp",
"binary_version": "5.19.0-1030.32~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-5.19",
"purl": "pkg:deb/ubuntu/linux-gcp-5.19@5.19.0-1030.32~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1020.22~22.04.2",
"5.19.0-1021.23~22.04.1",
"5.19.0-1022.24~22.04.1",
"5.19.0-1024.26~22.04.1",
"5.19.0-1025.27~22.04.1",
"5.19.0-1026.28~22.04.1",
"5.19.0-1027.29~22.04.1",
"5.19.0-1030.32~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-gcp-6.2-headers-6.2.0-1021",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-gcp-6.2-tools-6.2.0-1021",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1021-gcp",
"binary_version": "6.2.0-1021.23~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.2",
"purl": "pkg:deb/ubuntu/linux-gcp-6.2@6.2.0-1021.23~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1009.9~22.04.3",
"6.2.0-1010.10~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1011.11~22.04.3",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1016.18~22.04.1",
"6.2.0-1017.19~22.04.1",
"6.2.0-1018.20~22.04.1",
"6.2.0-1019.21~22.04.1",
"6.2.0-1021.23~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-gcp-6.5-headers-6.5.0-1025",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-gcp-6.5-tools-6.5.0-1025",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1025-gcp",
"binary_version": "6.5.0-1025.27~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.5",
"purl": "pkg:deb/ubuntu/linux-gcp-6.5@6.5.0-1025.27~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1010.10~22.04.3",
"6.5.0-1011.11~22.04.1",
"6.5.0-1013.13~22.04.1",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1017.17~22.04.1",
"6.5.0-1018.18~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1022.24~22.04.1",
"6.5.0-1023.25~22.04.1",
"6.5.0-1024.26~22.04.1",
"6.5.0-1025.27~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-gcp-6.8-headers-6.8.0-1064",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-gcp-6.8-tools-6.8.0-1064",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-gcp-6.8",
"purl": "pkg:deb/ubuntu/linux-gcp-6.8@6.8.0-1064.72~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1064.72~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1010.11~22.04.1",
"6.8.0-1011.12~22.04.1",
"6.8.0-1012.13~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.16~22.04.1",
"6.8.0-1015.17~22.04.1",
"6.8.0-1016.18~22.04.1",
"6.8.0-1017.19~22.04.1",
"6.8.0-1018.20~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1024.26~22.04.1",
"6.8.0-1025.27~22.04.1",
"6.8.0-1026.28~22.04.1",
"6.8.0-1027.29~22.04.1",
"6.8.0-1028.30~22.04.1",
"6.8.0-1029.31~22.04.1",
"6.8.0-1030.32~22.04.1",
"6.8.0-1031.33~22.04.1",
"6.8.0-1032.34~22.04.1",
"6.8.0-1033.35~22.04.1",
"6.8.0-1034.36~22.04.2",
"6.8.0-1036.38~22.04.1",
"6.8.0-1037.39~22.04.1",
"6.8.0-1040.42~22.04.1",
"6.8.0-1041.43~22.04.1",
"6.8.0-1042.45~22.04.1",
"6.8.0-1043.46~22.04.1",
"6.8.0-1044.47~22.04.1",
"6.8.0-1045.48~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.2",
"6.8.0-1048.51~22.04.1",
"6.8.0-1052.55~22.04.1",
"6.8.0-1053.56~22.04.1",
"6.8.0-1054.57~22.04.1",
"6.8.0-1058.61~22.04.1",
"6.8.0-1060.63~22.04.1",
"6.8.0-1063.69~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-buildinfo-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-buildinfo-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-cloud-tools-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-headers-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-cloud-tools-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-cloud-tools-common",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-headers-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-5.19.0-50",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-common",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-hwe-5.19-tools-host",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-unsigned-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-image-unsigned-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-extra-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-ipu6-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-ivsc-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-modules-iwlwifi-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-source-5.19.0",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic-64k",
"binary_version": "5.19.0-50.50"
},
{
"binary_name": "linux-tools-5.19.0-50-generic-lpae",
"binary_version": "5.19.0-50.50"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-5.19",
"purl": "pkg:deb/ubuntu/linux-hwe-5.19@5.19.0-50.50?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-28.29~22.04.1",
"5.19.0-32.33~22.04.1",
"5.19.0-35.36~22.04.1",
"5.19.0-38.39~22.04.1",
"5.19.0-40.41~22.04.1",
"5.19.0-41.42~22.04.1",
"5.19.0-42.43~22.04.1",
"5.19.0-43.44~22.04.1",
"5.19.0-45.46~22.04.1",
"5.19.0-46.47~22.04.1",
"5.19.0-50.50"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-cloud-tools-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-cloud-tools-common",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-headers-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-6.2.0-39",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-common",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-hwe-6.2-tools-host",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-source-6.2.0",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic-64k",
"binary_version": "6.2.0-39.40~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-39-generic-lpae",
"binary_version": "6.2.0-39.40~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.2",
"purl": "pkg:deb/ubuntu/linux-hwe-6.2@6.2.0-39.40~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-25.25~22.04.2",
"6.2.0-26.26~22.04.1",
"6.2.0-31.31~22.04.1",
"6.2.0-32.32~22.04.1",
"6.2.0-33.33~22.04.1",
"6.2.0-34.34~22.04.1",
"6.2.0-35.35~22.04.1",
"6.2.0-36.37~22.04.1",
"6.2.0-37.38~22.04.1",
"6.2.0-39.40~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-cloud-tools-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-cloud-tools-common",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-common",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-hwe-6.5-tools-host",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-source-6.5.0",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic-64k",
"binary_version": "6.5.0-45.45~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.5",
"purl": "pkg:deb/ubuntu/linux-hwe-6.5@6.5.0-45.45~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-14.14~22.04.1",
"6.5.0-15.15~22.04.1",
"6.5.0-17.17~22.04.1",
"6.5.0-18.18~22.04.1",
"6.5.0-21.21~22.04.1",
"6.5.0-25.25~22.04.1",
"6.5.0-26.26~22.04.1",
"6.5.0-27.28~22.04.1",
"6.5.0-28.29~22.04.1",
"6.5.0-35.35~22.04.1",
"6.5.0-41.41~22.04.2",
"6.5.0-44.44~22.04.1",
"6.5.0-45.45~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-cloud-tools-6.8.0-136",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-headers-6.8.0-136",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-hwe-6.8-tools-6.8.0-136",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-image-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-modules-usbio-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-hwe-6.8",
"purl": "pkg:deb/ubuntu/linux-hwe-6.8@6.8.0-136.136~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38~22.04.1",
"6.8.0-39.39~22.04.1",
"6.8.0-40.40~22.04.3",
"6.8.0-45.45~22.04.1",
"6.8.0-47.47~22.04.1",
"6.8.0-48.48~22.04.1",
"6.8.0-49.49~22.04.1",
"6.8.0-50.51~22.04.1",
"6.8.0-51.52~22.04.1",
"6.8.0-52.53~22.04.1",
"6.8.0-57.59~22.04.1",
"6.8.0-58.60~22.04.1",
"6.8.0-59.61~22.04.1",
"6.8.0-60.63~22.04.1",
"6.8.0-64.67~22.04.1",
"6.8.0-65.68~22.04.1",
"6.8.0-78.78~22.04.1",
"6.8.0-79.79~22.04.1",
"6.8.0-83.83~22.04.1",
"6.8.0-84.84~22.04.1",
"6.8.0-85.85~22.04.1",
"6.8.0-86.87~22.04.1",
"6.8.0-87.88~22.04.1",
"6.8.0-88.89~22.04.2",
"6.8.0-90.91~22.04.1",
"6.8.0-94.96~22.04.1",
"6.8.0-100.100~22.04.1",
"6.8.0-101.101~22.04.1",
"6.8.0-106.106~22.04.1",
"6.8.0-107.107~22.04.1",
"6.8.0-110.110~22.04.1",
"6.8.0-111.111~22.04.1",
"6.8.0-117.117~22.04.1",
"6.8.0-124.124~22.04.1",
"6.8.0-134.134~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-ibm-6.8-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-ibm-6.8-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-ibm-6.8",
"purl": "pkg:deb/ubuntu/linux-ibm-6.8@6.8.0-1061.62~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.62~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.13~22.04.1",
"6.8.0-1014.14~22.04.1",
"6.8.0-1015.15~22.04.1",
"6.8.0-1016.16~22.04.1",
"6.8.0-1017.17~22.04.1",
"6.8.0-1018.18~22.04.1",
"6.8.0-1019.19~22.04.1",
"6.8.0-1023.23~22.04.1",
"6.8.0-1024.24~22.04.1",
"6.8.0-1025.25~22.04.1",
"6.8.0-1026.26~22.04.1",
"6.8.0-1027.27~22.04.1",
"6.8.0-1028.28~22.04.1",
"6.8.0-1029.29~22.04.1",
"6.8.0-1030.30~22.04.1",
"6.8.0-1033.33~22.04.1",
"6.8.0-1036.36~22.04.1",
"6.8.0-1037.37~22.04.1",
"6.8.0-1038.38~22.04.1",
"6.8.0-1039.39~22.04.1",
"6.8.0-1040.40~22.04.1",
"6.8.0-1041.41~22.04.1",
"6.8.0-1042.42~22.04.1",
"6.8.0-1043.43~22.04.1",
"6.8.0-1044.44~22.04.1",
"6.8.0-1045.45~22.04.1",
"6.8.0-1049.49~22.04.1",
"6.8.0-1050.50~22.04.1",
"6.8.0-1051.51~22.04.1",
"6.8.0-1052.52~22.04.1",
"6.8.0-1055.56~22.04.1",
"6.8.0-1057.58~22.04.1",
"6.8.0-1060.61~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-headers-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-cloud-tools-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-cloud-tools-common",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-headers-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-5.15.0-1073",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-common",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-intel-iot-realtime-tools-host",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-modules-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-modules-extra-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
},
{
"binary_name": "linux-tools-5.15.0-1073-intel-iot-realtime",
"binary_version": "5.15.0-1073.75"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-intel-iot-realtime",
"purl": "pkg:deb/ubuntu/linux-intel-iot-realtime@5.15.0-1073.75?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1073.75"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-buildinfo-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-cloud-tools-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-headers-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-headers-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-image-unsigned-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-cloud-tools-common",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-headers-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-5.19.0-1030",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-common",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-lowlatency-hwe-5.19-tools-host",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-ipu6-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-ivsc-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-modules-iwlwifi-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-tools-5.19.0-1030-lowlatency",
"binary_version": "5.19.0-1030.30"
},
{
"binary_name": "linux-tools-5.19.0-1030-lowlatency-64k",
"binary_version": "5.19.0-1030.30"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-5.19",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-5.19@5.19.0-1030.30?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1017.18~22.04.1",
"5.19.0-1018.19~22.04.1",
"5.19.0-1021.22~22.04.1",
"5.19.0-1022.23~22.04.1",
"5.19.0-1023.24~22.04.1",
"5.19.0-1024.25~22.04.1",
"5.19.0-1025.26~22.04.1",
"5.19.0-1027.28~22.04.1",
"5.19.0-1028.29~22.04.1",
"5.19.0-1030.30"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-cloud-tools-common",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-headers-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-6.2.0-1018",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-common",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.2-tools-host",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-ivsc-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-lowlatency",
"binary_version": "6.2.0-1018.18~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1018-lowlatency-64k",
"binary_version": "6.2.0-1018.18~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.2",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.2@6.2.0-1018.18~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1008.8~22.04.1",
"6.2.0-1009.9~22.04.1",
"6.2.0-1011.11~22.04.1",
"6.2.0-1012.12~22.04.1",
"6.2.0-1013.13~22.04.1",
"6.2.0-1014.14~22.04.1",
"6.2.0-1015.15~22.04.1",
"6.2.0-1016.16~22.04.1",
"6.2.0-1017.17~22.04.1",
"6.2.0-1018.18~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-cloud-tools-common",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-lib-rust-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-common",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.5-tools-host",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-lowlatency",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-lowlatency-64k",
"binary_version": "6.5.0-45.45.1~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.5",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.5@6.5.0-45.45.1~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-14.14.1~22.04.1",
"6.5.0-15.15.1.1~22.04.1",
"6.5.0-17.17.1.1.1~22.04.1",
"6.5.0-21.21.1~22.04.1",
"6.5.0-25.25.1~22.04.1",
"6.5.0-26.26.1~22.04.1",
"6.5.0-27.28.1~22.04.1",
"6.5.0-28.29.1~22.04.1",
"6.5.0-35.35.1~22.04.1",
"6.5.0-41.41.1~22.04.1",
"6.5.0-42.42.1~22.04.1",
"6.5.0-44.44.1~22.04.1",
"6.5.0-45.45.1~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-cloud-tools-6.8.0-136",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-headers-6.8.0-136",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-lib-rust-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.8-tools-6.8.0-136",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-lowlatency-hwe-6.8",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.8@6.8.0-136.136.2~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136.2~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38.1~22.04.2",
"6.8.0-40.40.1~22.04.1",
"6.8.0-44.44.1~22.04.1",
"6.8.0-45.45.1~22.04.1",
"6.8.0-47.47.1~22.04.1",
"6.8.0-48.48.3~22.04.1",
"6.8.0-49.49.1~22.04.1",
"6.8.0-50.51.1~22.04.1",
"6.8.0-51.52.1~22.04.1",
"6.8.0-52.53.1~22.04.1",
"6.8.0-54.56.1~22.04.1",
"6.8.0-55.57.1~22.04.1",
"6.8.0-56.58.1~22.04.1",
"6.8.0-57.59.1~22.04.1",
"6.8.0-58.60.1~22.04.1",
"6.8.0-59.61.1~22.04.1",
"6.8.0-60.63.1~22.04.1",
"6.8.0-62.65.1~22.04.1",
"6.8.0-63.66.1~22.04.1",
"6.8.0-64.67.1~22.04.1",
"6.8.0-65.68.1~22.04.1",
"6.8.0-78.78.1~22.04.1",
"6.8.0-79.79.1~22.04.1",
"6.8.0-83.83.1~22.04.1",
"6.8.0-84.84.1~22.04.1",
"6.8.0-85.85.1~22.04.1",
"6.8.0-86.87.1~22.04.1",
"6.8.0-87.88.1~22.04.1",
"6.8.0-88.89.1~22.04.1",
"6.8.0-90.91.1~22.04.1",
"6.8.0-94.96.1~22.04.1",
"6.8.0-100.100.1~22.04.1",
"6.8.0-101.101.1~22.04.1",
"6.8.0-106.106.1~22.04.1",
"6.8.0-107.107.1~22.04.1",
"6.8.0-110.110.1~22.04.1",
"6.8.0-111.111.1~22.04.1",
"6.8.0-117.117.1~22.04.1",
"6.8.0-134.134.1~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-buildinfo-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-headers-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-headers-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-image-unsigned-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-extra-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-modules-nvidia-fs-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-headers-6.2.0-1015",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-tools-6.2.0-1015",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-nvidia-6.2-tools-host",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-tools-6.2.0-1015-nvidia",
"binary_version": "6.2.0-1015.15"
},
{
"binary_name": "linux-tools-6.2.0-1015-nvidia-64k",
"binary_version": "6.2.0-1015.15"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.2",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.2@6.2.0-1015.15?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1003.3~22.04.1",
"6.2.0-1009.9",
"6.2.0-1010.10",
"6.2.0-1011.11",
"6.2.0-1012.12",
"6.2.0-1013.13",
"6.2.0-1015.15"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-buildinfo-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-headers-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-headers-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-extra-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-modules-nvidia-fs-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-headers-6.5.0-1024",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-tools-6.5.0-1024",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-nvidia-6.5-tools-host",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-tools-6.5.0-1024-nvidia",
"binary_version": "6.5.0-1024.25"
},
{
"binary_name": "linux-tools-6.5.0-1024-nvidia-64k",
"binary_version": "6.5.0-1024.25"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.5",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.5@6.5.0-1024.25?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1004.4",
"6.5.0-1007.7",
"6.5.0-1013.13",
"6.5.0-1014.14",
"6.5.0-1015.15",
"6.5.0-1018.18",
"6.5.0-1019.19",
"6.5.0-1021.22",
"6.5.0-1022.23",
"6.5.0-1023.24",
"6.5.0-1024.25"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-nvidia-6.8-headers-6.8.0-1059",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-nvidia-6.8-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-nvidia-6.8",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.8@6.8.0-1059.62~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1059.62~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.8~22.04.1",
"6.8.0-1009.9~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.14~22.04.1",
"6.8.0-1014.15~22.04.1",
"6.8.0-1015.16~22.04.1",
"6.8.0-1017.19~22.04.1",
"6.8.0-1018.20~22.04.1",
"6.8.0-1019.21~22.04.1",
"6.8.0-1020.22~22.04.1",
"6.8.0-1021.23~22.04.1",
"6.8.0-1022.25~22.04.2",
"6.8.0-1023.26~22.04.1",
"6.8.0-1024.27~22.04.1",
"6.8.0-1025.28~22.04.1",
"6.8.0-1026.29~22.04.1",
"6.8.0-1027.30~22.04.1",
"6.8.0-1028.31~22.04.1",
"6.8.0-1029.32~22.04.1",
"6.8.0-1030.33~22.04.1",
"6.8.0-1031.34~22.04.1",
"6.8.0-1032.35~22.04.1",
"6.8.0-1035.38~22.04.1",
"6.8.0-1036.39~22.04.1",
"6.8.0-1038.41~22.04.1",
"6.8.0-1039.42~22.04.1",
"6.8.0-1040.43~22.04.1",
"6.8.0-1041.44~22.04.2",
"6.8.0-1042.45~22.04.1",
"6.8.0-1043.46~22.04.1",
"6.8.0-1044.47~22.04.1",
"6.8.0-1045.48~22.04.1",
"6.8.0-1046.49~22.04.1",
"6.8.0-1047.50~22.04.1",
"6.8.0-1049.52~22.04.1",
"6.8.0-1050.53~22.04.1",
"6.8.0-1051.54~22.04.1",
"6.8.0-1052.55~22.04.1",
"6.8.0-1054.57~22.04.1",
"6.8.0-1055.58~22.04.1",
"6.8.0-1058.61~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-headers-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-image-unsigned-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-ipu6-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-ivsc-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-modules-iwlwifi-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-headers-5.17.0-1035",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-tools-5.17.0-1035",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-oem-5.17-tools-host",
"binary_version": "5.17.0-1035.36"
},
{
"binary_name": "linux-tools-5.17.0-1035-oem",
"binary_version": "5.17.0-1035.36"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-5.17",
"purl": "pkg:deb/ubuntu/linux-oem-5.17@5.17.0-1035.36?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.17.0-1003.3",
"5.17.0-1004.4",
"5.17.0-1006.6",
"5.17.0-1011.12",
"5.17.0-1012.13",
"5.17.0-1013.14",
"5.17.0-1014.15",
"5.17.0-1015.16",
"5.17.0-1016.17",
"5.17.0-1017.18",
"5.17.0-1018.19",
"5.17.0-1019.20",
"5.17.0-1020.21",
"5.17.0-1021.22",
"5.17.0-1024.25",
"5.17.0-1025.26",
"5.17.0-1026.27",
"5.17.0-1027.28",
"5.17.0-1028.29",
"5.17.0-1029.30",
"5.17.0-1030.31",
"5.17.0-1031.32",
"5.17.0-1032.33",
"5.17.0-1033.34",
"5.17.0-1034.35",
"5.17.0-1035.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-headers-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-image-unsigned-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-ipu6-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-ivsc-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-modules-iwlwifi-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-headers-6.0.0-1021",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-tools-6.0.0-1021",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-oem-6.0-tools-host",
"binary_version": "6.0.0-1021.21"
},
{
"binary_name": "linux-tools-6.0.0-1021-oem",
"binary_version": "6.0.0-1021.21"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.0",
"purl": "pkg:deb/ubuntu/linux-oem-6.0@6.0.0-1021.21?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.0.0-1006.6",
"6.0.0-1007.7",
"6.0.0-1008.8",
"6.0.0-1009.9",
"6.0.0-1010.10",
"6.0.0-1011.11",
"6.0.0-1012.12",
"6.0.0-1013.13",
"6.0.0-1014.14",
"6.0.0-1015.15",
"6.0.0-1016.16",
"6.0.0-1017.17",
"6.0.0-1018.18",
"6.0.0-1019.19",
"6.0.0-1020.20",
"6.0.0-1021.21"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-headers-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-image-unsigned-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-ipu6-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-ivsc-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-modules-iwlwifi-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-headers-6.1.0-1036",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-tools-6.1.0-1036",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-oem-6.1-tools-host",
"binary_version": "6.1.0-1036.36"
},
{
"binary_name": "linux-tools-6.1.0-1036-oem",
"binary_version": "6.1.0-1036.36"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.1",
"purl": "pkg:deb/ubuntu/linux-oem-6.1@6.1.0-1036.36?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.1.0-1004.4",
"6.1.0-1006.6",
"6.1.0-1007.7",
"6.1.0-1008.8",
"6.1.0-1009.9",
"6.1.0-1010.10",
"6.1.0-1012.12",
"6.1.0-1013.13",
"6.1.0-1014.14",
"6.1.0-1015.15",
"6.1.0-1016.16",
"6.1.0-1017.17",
"6.1.0-1019.19",
"6.1.0-1020.20",
"6.1.0-1021.21",
"6.1.0-1022.22",
"6.1.0-1023.23",
"6.1.0-1024.24",
"6.1.0-1025.25",
"6.1.0-1026.26",
"6.1.0-1027.27",
"6.1.0-1028.28",
"6.1.0-1029.29",
"6.1.0-1033.33",
"6.1.0-1034.34",
"6.1.0-1035.35",
"6.1.0-1036.36"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-headers-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-ipu6-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-ivsc-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-iwlwifi-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-modules-usbio-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-headers-6.5.0-1027",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-lib-rust-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-tools-6.5.0-1027",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-oem-6.5-tools-host",
"binary_version": "6.5.0-1027.28"
},
{
"binary_name": "linux-tools-6.5.0-1027-oem",
"binary_version": "6.5.0-1027.28"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oem-6.5",
"purl": "pkg:deb/ubuntu/linux-oem-6.5@6.5.0-1027.28?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1003.3",
"6.5.0-1004.4",
"6.5.0-1006.6",
"6.5.0-1007.7",
"6.5.0-1008.8",
"6.5.0-1009.10",
"6.5.0-1011.12",
"6.5.0-1013.14",
"6.5.0-1014.15",
"6.5.0-1015.16",
"6.5.0-1016.17",
"6.5.0-1018.19",
"6.5.0-1019.20",
"6.5.0-1020.21",
"6.5.0-1022.23",
"6.5.0-1023.24",
"6.5.0-1024.25",
"6.5.0-1025.26",
"6.5.0-1027.28"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-oracle-6.5-headers-6.5.0-1027",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-oracle-6.5-tools-6.5.0-1027",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1027-oracle",
"binary_version": "6.5.0-1027.27~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1027-oracle-64k",
"binary_version": "6.5.0-1027.27~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oracle-6.5",
"purl": "pkg:deb/ubuntu/linux-oracle-6.5@6.5.0-1027.27~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1013.13~22.04.4",
"6.5.0-1014.14~22.04.1",
"6.5.0-1015.15~22.04.1",
"6.5.0-1016.16~22.04.1",
"6.5.0-1018.18~22.04.1",
"6.5.0-1019.19~22.04.1",
"6.5.0-1020.20~22.04.1",
"6.5.0-1021.21~22.04.1",
"6.5.0-1023.23~22.04.1",
"6.5.0-1024.24~22.04.1",
"6.5.0-1025.25~22.04.1",
"6.5.0-1026.26~22.04.1",
"6.5.0-1027.27~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-headers-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-modules-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-oracle-6.8-headers-6.8.0-1058",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-oracle-6.8-tools-6.8.0-1058",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61~22.04.1"
},
{
"binary_name": "linux-tools-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-oracle-6.8",
"purl": "pkg:deb/ubuntu/linux-oracle-6.8@6.8.0-1058.61~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1058.61~22.04.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1006.6~22.04.3",
"6.8.0-1008.8~22.04.1",
"6.8.0-1010.10~22.04.1",
"6.8.0-1011.11~22.04.1",
"6.8.0-1012.12~22.04.1",
"6.8.0-1013.13~22.04.1",
"6.8.0-1014.14~22.04.1",
"6.8.0-1015.15~22.04.1",
"6.8.0-1016.17~22.04.1",
"6.8.0-1017.18~22.04.1",
"6.8.0-1018.19~22.04.1",
"6.8.0-1019.20~22.04.1",
"6.8.0-1020.21~22.04.1",
"6.8.0-1021.22~22.04.1",
"6.8.0-1022.23~22.04.1",
"6.8.0-1023.24~22.04.1",
"6.8.0-1024.25~22.04.1",
"6.8.0-1025.26~22.04.1",
"6.8.0-1026.27~22.04.1",
"6.8.0-1027.28~22.04.1",
"6.8.0-1028.29~22.04.1",
"6.8.0-1029.30~22.04.1",
"6.8.0-1030.31~22.04.1",
"6.8.0-1032.33~22.04.1",
"6.8.0-1033.34~22.04.1",
"6.8.0-1035.36~22.04.1",
"6.8.0-1037.38~22.04.1",
"6.8.0-1038.39~22.04.1",
"6.8.0-1039.40~22.04.1",
"6.8.0-1040.41~22.04.1",
"6.8.0-1041.42~22.04.1",
"6.8.0-1042.43~22.04.1",
"6.8.0-1043.44~22.04.1",
"6.8.0-1044.45~22.04.1",
"6.8.0-1047.48~22.04.1",
"6.8.0-1049.50~22.04.1",
"6.8.0-1050.51~22.04.1",
"6.8.0-1052.53~22.04.1",
"6.8.0-1054.55~22.04.1",
"6.8.0-1057.58~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-cloud-tools-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-headers-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-image-unsigned-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-modules-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-modules-extra-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-cloud-tools-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-cloud-tools-common",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-headers-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-5.15.0-1032",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-common",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-realtime-tools-host",
"binary_version": "5.15.0-1032.35"
},
{
"binary_name": "linux-tools-5.15.0-1032-realtime",
"binary_version": "5.15.0-1032.35"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@5.15.0-1032.35?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.15.0-1032.35"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-headers-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-image-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-modules-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-modules-extra-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-riscv-headers-5.15.0-1028",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-riscv-tools-5.15.0-1028",
"binary_version": "5.15.0-1028.32"
},
{
"binary_name": "linux-tools-5.15.0-1028-generic",
"binary_version": "5.15.0-1028.32"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@5.15.0-1028.32?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.13.0-1004.4",
"5.13.0-1006.6+22.04.1",
"5.13.0-1007.7+22.04.1",
"5.13.0-1010.11+22.04.1",
"5.15.0-1004.4",
"5.15.0-1005.5",
"5.15.0-1006.6",
"5.15.0-1007.7",
"5.15.0-1008.8",
"5.15.0-1011.12",
"5.15.0-1012.13",
"5.15.0-1014.16",
"5.15.0-1015.17",
"5.15.0-1016.18",
"5.15.0-1017.19",
"5.15.0-1018.21",
"5.15.0-1019.22",
"5.15.0-1020.23",
"5.15.0-1022.26",
"5.15.0-1023.27",
"5.15.0-1026.30",
"5.15.0-1027.31",
"5.15.0-1028.32"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-riscv-5.19-headers-5.19.0-1021",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-riscv-5.19-tools-5.19.0-1021",
"binary_version": "5.19.0-1021.23~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1021-generic",
"binary_version": "5.19.0-1021.23~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-5.19",
"purl": "pkg:deb/ubuntu/linux-riscv-5.19@5.19.0-1021.23~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1012.13~22.04.1",
"5.19.0-1015.16~22.04.1",
"5.19.0-1016.17~22.04.1",
"5.19.0-1017.18~22.04.1",
"5.19.0-1018.19~22.04.1",
"5.19.0-1019.21~22.04.1",
"5.19.0-1020.22~22.04.1",
"5.19.0-1021.23~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-riscv-6.5-headers-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-riscv-6.5-tools-6.5.0-45",
"binary_version": "6.5.0-45.45.1~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-45-generic",
"binary_version": "6.5.0-45.45.1~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-6.5",
"purl": "pkg:deb/ubuntu/linux-riscv-6.5@6.5.0-45.45.1~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-17.17.1.1~22.04.1",
"6.5.0-21.21.1~22.04.1",
"6.5.0-25.25.1~22.04.1",
"6.5.0-26.26.1~22.04.1",
"6.5.0-27.28.1~22.04.1",
"6.5.0-28.29.1~22.04.1",
"6.5.0-35.35.1~22.04.1",
"6.5.0-40.40.1~22.04.1",
"6.5.0-42.42.1~22.04.1",
"6.5.0-45.45.1~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-headers-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-image-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-modules-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-riscv-6.8-headers-6.8.0-136",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-riscv-6.8-tools-6.8.0-136",
"binary_version": "6.8.0-136.136~22.04.3"
},
{
"binary_name": "linux-tools-6.8.0-136-generic",
"binary_version": "6.8.0-136.136~22.04.3"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-riscv-6.8",
"purl": "pkg:deb/ubuntu/linux-riscv-6.8@6.8.0-136.136~22.04.3?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136~22.04.3"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38.1~22.04.1",
"6.8.0-39.39.1~22.04.1",
"6.8.0-40.40.1~22.04.1",
"6.8.0-41.41.1~22.04.1",
"6.8.0-44.44.1~22.04.1",
"6.8.0-47.47.1~22.04.1",
"6.8.0-48.48.1~22.04.2",
"6.8.0-49.49.1~22.04.1",
"6.8.0-50.51.1~22.04.1",
"6.8.0-51.52.1~22.04.1",
"6.8.0-52.53.1~22.04.1",
"6.8.0-53.55.1~22.04.1",
"6.8.0-55.57.1~22.04.1",
"6.8.0-56.58.1~22.04.1",
"6.8.0-57.59.1~22.04.1",
"6.8.0-58.60.1~22.04.1",
"6.8.0-59.61.1~22.04.1",
"6.8.0-62.65~22.04.1",
"6.8.0-63.66~22.04.1",
"6.8.0-64.67~22.04.1",
"6.8.0-71.71~22.04.1",
"6.8.0-78.78~22.04.1",
"6.8.0-79.79~22.04.1",
"6.8.0-83.83~22.04.1",
"6.8.0-84.84~22.04.1",
"6.8.0-86.87~22.04.1",
"6.8.0-87.88~22.04.1",
"6.8.0-88.89~22.04.1",
"6.8.0-90.91~22.04.1",
"6.8.0-94.96~22.04.1",
"6.8.0-100.100~22.04.1",
"6.8.0-101.101~22.04.1",
"6.8.0-106.106~22.04.1",
"6.8.0-107.107~22.04.1",
"6.8.0-110.110~22.04.1",
"6.8.0-111.111~22.04.1",
"6.8.0-117.117~22.04.1",
"6.8.0-124.124~22.04.1",
"6.8.0-134.134~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-headers-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-image-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-modules-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-modules-extra-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-starfive-5.19-headers-5.19.0-1020",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-starfive-5.19-tools-5.19.0-1020",
"binary_version": "5.19.0-1020.22~22.04.1"
},
{
"binary_name": "linux-tools-5.19.0-1020-starfive",
"binary_version": "5.19.0-1020.22~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-5.19",
"purl": "pkg:deb/ubuntu/linux-starfive-5.19@5.19.0-1020.22~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"5.19.0-1014.16~22.04.1",
"5.19.0-1015.17~22.04.1",
"5.19.0-1016.18~22.04.1",
"5.19.0-1017.19~22.04.1",
"5.19.0-1018.20~22.04.1",
"5.19.0-1019.21~22.04.1",
"5.19.0-1020.22~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-headers-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-image-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-modules-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-starfive-6.2-headers-6.2.0-1009",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-starfive-6.2-tools-6.2.0-1009",
"binary_version": "6.2.0-1009.10~22.04.1"
},
{
"binary_name": "linux-tools-6.2.0-1009-starfive",
"binary_version": "6.2.0-1009.10~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-6.2",
"purl": "pkg:deb/ubuntu/linux-starfive-6.2@6.2.0-1009.10~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.2.0-1006.7~22.04.1",
"6.2.0-1007.8~22.04.1",
"6.2.0-1009.10~22.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-headers-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-image-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-modules-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-modules-extra-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-starfive-6.5-headers-6.5.0-1018",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-starfive-6.5-tools-6.5.0-1018",
"binary_version": "6.5.0-1018.19~22.04.1"
},
{
"binary_name": "linux-tools-6.5.0-1018-starfive",
"binary_version": "6.5.0-1018.19~22.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:22.04:LTS",
"name": "linux-starfive-6.5",
"purl": "pkg:deb/ubuntu/linux-starfive-6.5@6.5.0-1018.19~22.04.1?arch=source\u0026distro=jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.8~22.04.1",
"6.5.0-1008.9~22.04.1",
"6.5.0-1009.10~22.04.1",
"6.5.0-1010.11~22.04.1",
"6.5.0-1011.12~22.04.1",
"6.5.0-1012.13~22.04.1",
"6.5.0-1014.15~22.04.1",
"6.5.0-1015.16~22.04.1",
"6.5.0-1016.17~22.04.1",
"6.5.0-1017.18~22.04.1",
"6.5.0-1018.19~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-headers-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-modules-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-modules-extra-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-realtime-6.8-cloud-tools-6.8.1-1056",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-realtime-6.8-headers-6.8.1-1056",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-realtime-6.8-tools-6.8.1-1056",
"binary_version": "6.8.1-1056.57~22.04.2"
},
{
"binary_name": "linux-tools-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57~22.04.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:22.04:LTS",
"name": "linux-realtime-6.8",
"purl": "pkg:deb/ubuntu/linux-realtime-6.8@6.8.1-1056.57~22.04.2?arch=source\u0026distro=realtime/jammy"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.1-1056.57~22.04.2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.1-1004.4~22.04.1",
"6.8.1-1005.5~22.04.2",
"6.8.1-1006.6~22.04.1",
"6.8.1-1007.7~22.04.1",
"6.8.1-1008.8~22.04.1",
"6.8.1-1009.9~22.04.1",
"6.8.1-1010.10~22.04.1",
"6.8.1-1011.11~22.04.1",
"6.8.1-1012.12~22.04.1",
"6.8.1-1013.14~22.04.1",
"6.8.1-1014.15~22.04.1",
"6.8.1-1015.16~22.04.1",
"6.8.1-1016.17~22.04.1",
"6.8.1-1017.18~22.04.1",
"6.8.1-1018.19~22.04.1",
"6.8.1-1019.20~22.04.1",
"6.8.1-1020.21~22.04.1",
"6.8.1-1021.22~22.04.1",
"6.8.1-1022.23~22.04.1",
"6.8.1-1023.24~22.04.1",
"6.8.1-1024.25~22.04.1",
"6.8.1-1025.26~22.04.1",
"6.8.1-1026.27~22.04.1",
"6.8.1-1030.31~22.04.1",
"6.8.1-1031.32~22.04.1",
"6.8.1-1034.35~22.04.1",
"6.8.1-1035.36~22.04.1",
"6.8.1-1036.37~22.04.1",
"6.8.1-1037.38~22.04.1",
"6.8.1-1038.39~22.04.1",
"6.8.1-1039.40~22.04.1",
"6.8.1-1040.41~22.04.1",
"6.8.1-1041.42~22.04.1",
"6.8.1-1042.43~22.04.1",
"6.8.1-1045.46~22.04.1",
"6.8.1-1046.47~22.04.2",
"6.8.1-1047.48~22.04.1",
"6.8.1-1048.49~22.04.1",
"6.8.1-1051.52~22.04.1",
"6.8.1-1052.53~22.04.1",
"6.8.1-1055.56~22.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-buildinfo-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-cloud-tools-common",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-headers-6.8.0-136",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-headers-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-headers-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-image-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-lib-rust-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-extra-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-modules-usbio-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-source-6.8.0",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-tools-6.8.0-136",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-tools-6.8.0-136-generic",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-tools-6.8.0-136-generic-64k",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-tools-common",
"binary_version": "6.8.0-136.136"
},
{
"binary_name": "linux-tools-host",
"binary_version": "6.8.0-136.136"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux",
"purl": "pkg:deb/ubuntu/linux@6.8.0-136.136?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9",
"6.6.0-14.14",
"6.8.0-11.11",
"6.8.0-20.20",
"6.8.0-22.22",
"6.8.0-28.28",
"6.8.0-31.31",
"6.8.0-35.35",
"6.8.0-36.36",
"6.8.0-38.38",
"6.8.0-39.39",
"6.8.0-40.40",
"6.8.0-41.41",
"6.8.0-44.44",
"6.8.0-45.45",
"6.8.0-47.47",
"6.8.0-48.48",
"6.8.0-49.49",
"6.8.0-50.51",
"6.8.0-51.52",
"6.8.0-52.53",
"6.8.0-53.55",
"6.8.0-54.56",
"6.8.0-55.57",
"6.8.0-56.58",
"6.8.0-57.59",
"6.8.0-58.60",
"6.8.0-59.61",
"6.8.0-60.63",
"6.8.0-62.65",
"6.8.0-63.66",
"6.8.0-64.67",
"6.8.0-71.71",
"6.8.0-78.78",
"6.8.0-79.79",
"6.8.0-83.83",
"6.8.0-84.84",
"6.8.0-85.85",
"6.8.0-86.87",
"6.8.0-87.88",
"6.8.0-88.89",
"6.8.0-90.91",
"6.8.0-94.96",
"6.8.0-100.100",
"6.8.0-101.101",
"6.8.0-106.106",
"6.8.0-107.107",
"6.8.0-110.110",
"6.8.0-111.111",
"6.8.0-117.117",
"6.8.0-124.124",
"6.8.0-134.134"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-aws-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-aws-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-buildinfo-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-buildinfo-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-headers-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-headers-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-modules-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-modules-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-tools-6.8.0-1061-aws",
"binary_version": "6.8.0-1061.64"
},
{
"binary_name": "linux-tools-6.8.0-1061-aws-64k",
"binary_version": "6.8.0-1061.64"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.8.0-1061.64?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.64"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1008.8",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1006.6",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1016.17",
"6.8.0-1017.18",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1023.25",
"6.8.0-1024.26",
"6.8.0-1025.27",
"6.8.0-1026.28",
"6.8.0-1027.29",
"6.8.0-1028.30",
"6.8.0-1029.31",
"6.8.0-1030.32",
"6.8.0-1031.33",
"6.8.0-1032.34",
"6.8.0-1033.35",
"6.8.0-1035.37",
"6.8.0-1036.38",
"6.8.0-1038.40",
"6.8.0-1039.41",
"6.8.0-1040.42",
"6.8.0-1041.43",
"6.8.0-1042.44",
"6.8.0-1043.45",
"6.8.0-1044.46",
"6.8.0-1045.47",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1050.53",
"6.8.0-1051.54",
"6.8.0-1052.55",
"6.8.0-1053.56",
"6.8.0-1055.58",
"6.8.0-1057.60",
"6.8.0-1060.63"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.14-cloud-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-aws-6.14-headers-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-aws-6.14-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-aws",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-aws-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws-6.14",
"purl": "pkg:deb/ubuntu/linux-aws-6.14@6.14.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1009.9~24.04.1",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1",
"6.14.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-6.17-cloud-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-aws-6.17-headers-6.17.0-1020",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-aws-6.17-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1020-aws",
"binary_version": "6.17.0-1020.20~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-1020-aws-64k",
"binary_version": "6.17.0-1020.20~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-aws-6.17",
"purl": "pkg:deb/ubuntu/linux-aws-6.17@6.17.0-1020.20~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1005.5~24.04.2",
"6.17.0-1007.7~24.04.1",
"6.17.0-1009.9~24.04.2",
"6.17.0-1010.10~24.04.1",
"6.17.0-1012.12~24.04.1",
"6.17.0-1013.13~24.04.1",
"6.17.0-1015.15~24.04.1",
"6.17.0-1017.17~24.04.1",
"6.17.0-1019.19~24.04.1",
"6.17.0-1020.20~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-azure-headers-6.8.0-1063",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-azure-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-buildinfo-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-headers-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-modules-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-modules-extra-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
},
{
"binary_name": "linux-tools-6.8.0-1063-azure",
"binary_version": "6.8.0-1063.71"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.8.0-1063.71?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1063.71"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1012.14",
"6.8.0-1013.15",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.20",
"6.8.0-1018.21",
"6.8.0-1020.23",
"6.8.0-1021.25",
"6.8.0-1025.30",
"6.8.0-1026.31",
"6.8.0-1027.32",
"6.8.0-1028.33",
"6.8.0-1029.34",
"6.8.0-1030.35",
"6.8.0-1031.36",
"6.8.0-1034.39",
"6.8.0-1038.44",
"6.8.0-1040.46",
"6.8.0-1041.47",
"6.8.0-1042.48",
"6.8.0-1044.50",
"6.8.0-1046.52",
"6.8.0-1051.57",
"6.8.0-1052.58",
"6.8.0-1054.60",
"6.8.0-1056.62",
"6.8.0-1058.64",
"6.8.0-1059.65",
"6.8.0-1062.69"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.11-cloud-tools-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-azure-6.11-headers-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-azure-6.11-tools-6.11.0-1018",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1018-azure",
"binary_version": "6.11.0-1018.18~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.11",
"purl": "pkg:deb/ubuntu/linux-azure-6.11@6.11.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1008.8~24.04.1",
"6.11.0-1012.12~24.04.1",
"6.11.0-1013.13~24.04.1",
"6.11.0-1014.14~24.04.1",
"6.11.0-1015.15~24.04.1",
"6.11.0-1017.17~24.04.1",
"6.11.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-azure",
"binary_version": "6.14.0-1017.17~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1010.10~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-6.17-cloud-tools-6.17.0-1022",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-azure-6.17-headers-6.17.0-1022",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-azure-6.17-tools-6.17.0-1022",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-buildinfo-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-headers-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-modules-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-modules-extra-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
},
{
"binary_name": "linux-tools-6.17.0-1022-azure",
"binary_version": "6.17.0-1022.22"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-6.17",
"purl": "pkg:deb/ubuntu/linux-azure-6.17@6.17.0-1022.22?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1008.8~24.04.1",
"6.17.0-1010.10~24.04.1",
"6.17.0-1011.11~24.04.2",
"6.17.0-1013.13~24.04.1",
"6.17.0-1015.15~24.04.1",
"6.17.0-1017.17~24.04.1",
"6.17.0-1018.18~24.04.1",
"6.17.0-1020.20~24.04.1",
"6.17.0-1021.21~24.04.1",
"6.17.0-1022.22"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-azure-fde-cloud-tools-6.8.0-1062",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-azure-fde-headers-6.8.0-1062",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-azure-fde-tools-6.8.0-1062",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-buildinfo-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-headers-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-modules-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-modules-extra-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
},
{
"binary_name": "linux-tools-6.8.0-1062-azure-fde",
"binary_version": "6.8.0-1062.69"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@6.8.0-1062.69?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1062.69"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1041.48",
"6.8.0-1044.51",
"6.8.0-1046.53",
"6.8.0-1053.60",
"6.8.0-1058.65",
"6.8.0-1061.68"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-fde-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-azure-fde-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-azure-fde",
"binary_version": "6.14.0-1017.17~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-fde-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-fde-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-nvidia-cloud-tools-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-azure-nvidia-headers-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-azure-nvidia-tools-6.8.0-1039",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-buildinfo-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-headers-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-modules-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-modules-extra-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
},
{
"binary_name": "linux-tools-6.8.0-1039-azure-nvidia",
"binary_version": "6.8.0-1039.42"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-nvidia",
"purl": "pkg:deb/ubuntu/linux-azure-nvidia@6.8.0-1039.42?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1016.17",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1022.23",
"6.8.0-1025.27",
"6.8.0-1027.30",
"6.8.0-1029.32",
"6.8.0-1039.42"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-nvidia-6.14-cloud-tools-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-azure-nvidia-6.14-headers-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-azure-nvidia-6.14-tools-6.14.0-1007",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-buildinfo-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-headers-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-modules-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-modules-extra-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
},
{
"binary_name": "linux-tools-6.14.0-1007-azure-nvidia",
"binary_version": "6.14.0-1007.7"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-azure-nvidia-6.14",
"purl": "pkg:deb/ubuntu/linux-azure-nvidia-6.14@6.14.0-1007.7?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1003.3",
"6.14.0-1006.6",
"6.14.0-1007.7"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-buildinfo-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-gcp-headers-6.8.0-1064",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-gcp-tools-6.8.0-1064",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-headers-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-headers-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-modules-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-modules-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-modules-extra-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-modules-extra-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-tools-6.8.0-1064-gcp",
"binary_version": "6.8.0-1064.72"
},
{
"binary_name": "linux-tools-6.8.0-1064-gcp-64k",
"binary_version": "6.8.0-1064.72"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.8.0-1064.72?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1064.72"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1007.7",
"6.6.0-1001.1",
"6.8.0-1002.2",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.9",
"6.8.0-1009.10",
"6.8.0-1010.11",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1024.26",
"6.8.0-1025.27",
"6.8.0-1026.28",
"6.8.0-1027.29",
"6.8.0-1028.30",
"6.8.0-1029.31",
"6.8.0-1030.32",
"6.8.0-1031.33",
"6.8.0-1032.34",
"6.8.0-1033.35",
"6.8.0-1034.36",
"6.8.0-1036.38",
"6.8.0-1037.39",
"6.8.0-1039.41",
"6.8.0-1040.42",
"6.8.0-1041.43",
"6.8.0-1042.45",
"6.8.0-1043.46",
"6.8.0-1044.47",
"6.8.0-1045.48",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1048.51",
"6.8.0-1052.55",
"6.8.0-1053.56",
"6.8.0-1054.57",
"6.8.0-1055.58",
"6.8.0-1058.61",
"6.8.0-1060.63",
"6.8.0-1063.69"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-headers-6.11.0-1017",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-lib-rust-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-gcp-6.11-tools-6.11.0-1017",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1017-gcp",
"binary_version": "6.11.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1017-gcp-64k",
"binary_version": "6.11.0-1017.17~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.11",
"purl": "pkg:deb/ubuntu/linux-gcp-6.11@6.11.0-1017.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1006.6~24.04.2",
"6.11.0-1011.11~24.04.1",
"6.11.0-1013.13~24.04.1",
"6.11.0-1014.14~24.04.1",
"6.11.0-1015.15~24.04.1",
"6.11.0-1016.16~24.04.1",
"6.11.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-gcp-6.14-headers-6.14.0-1021",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-gcp-6.14-tools-6.14.0-1021",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1021-gcp",
"binary_version": "6.14.0-1021.22~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1021-gcp-64k",
"binary_version": "6.14.0-1021.22~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.14",
"purl": "pkg:deb/ubuntu/linux-gcp-6.14@6.14.0-1021.22~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1014.15~24.04.1",
"6.14.0-1015.16~24.04.1",
"6.14.0-1016.17~24.04.1",
"6.14.0-1017.18~24.04.1",
"6.14.0-1018.19~24.04.1",
"6.14.0-1019.20~24.04.1",
"6.14.0-1020.21~24.04.1",
"6.14.0-1021.22~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-buildinfo-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-gcp-6.17-headers-6.17.0-1022",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-gcp-6.17-tools-6.17.0-1022",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-headers-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-headers-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-lib-rust-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-modules-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-modules-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-modules-extra-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-modules-extra-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-tools-6.17.0-1022-gcp",
"binary_version": "6.17.0-1022.25"
},
{
"binary_name": "linux-tools-6.17.0-1022-gcp-64k",
"binary_version": "6.17.0-1022.25"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gcp-6.17",
"purl": "pkg:deb/ubuntu/linux-gcp-6.17@6.17.0-1022.25?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4~24.04.3",
"6.17.0-1008.8~24.04.1",
"6.17.0-1009.9~24.04.3",
"6.17.0-1010.10~24.04.1",
"6.17.0-1012.12~24.04.1",
"6.17.0-1013.13~24.04.1",
"6.17.0-1016.17~24.04.1",
"6.17.0-1018.19~24.04.1",
"6.17.0-1020.22~24.04.1",
"6.17.0-1021.24~24.04.1",
"6.17.0-1022.25"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-buildinfo-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-gke-headers-6.8.0-1059",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-gke-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-headers-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-headers-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-modules-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-modules-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-modules-extra-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-modules-extra-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-tools-6.8.0-1059-gke",
"binary_version": "6.8.0-1059.67"
},
{
"binary_name": "linux-tools-6.8.0-1059-gke-64k",
"binary_version": "6.8.0-1059.67"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gke",
"purl": "pkg:deb/ubuntu/linux-gke@6.8.0-1059.67?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1059.67"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.5",
"6.8.0-1004.7",
"6.8.0-1005.8",
"6.8.0-1006.9",
"6.8.0-1007.10",
"6.8.0-1008.11",
"6.8.0-1009.12",
"6.8.0-1010.13",
"6.8.0-1011.14",
"6.8.0-1012.15",
"6.8.0-1013.17",
"6.8.0-1014.18",
"6.8.0-1015.19",
"6.8.0-1016.20",
"6.8.0-1017.21",
"6.8.0-1019.23",
"6.8.0-1020.24",
"6.8.0-1021.25",
"6.8.0-1022.26",
"6.8.0-1023.27",
"6.8.0-1024.28",
"6.8.0-1025.29",
"6.8.0-1026.30",
"6.8.0-1027.31",
"6.8.0-1028.32",
"6.8.0-1029.33",
"6.8.0-1032.36",
"6.8.0-1033.37",
"6.8.0-1035.39",
"6.8.0-1036.40",
"6.8.0-1037.41",
"6.8.0-1038.43",
"6.8.0-1039.44",
"6.8.0-1040.45",
"6.8.0-1041.46",
"6.8.0-1042.47",
"6.8.0-1043.48",
"6.8.0-1044.49",
"6.8.0-1048.53",
"6.8.0-1049.54",
"6.8.0-1050.56",
"6.8.0-1051.57",
"6.8.0-1054.60",
"6.8.0-1055.61",
"6.8.0-1058.64"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-gkeop-cloud-tools-6.8.0-1046",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-gkeop-headers-6.8.0-1046",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-gkeop-tools-6.8.0-1046",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-headers-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-modules-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-modules-extra-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
},
{
"binary_name": "linux-tools-6.8.0-1046-gkeop",
"binary_version": "6.8.0-1046.50"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-gkeop",
"purl": "pkg:deb/ubuntu/linux-gkeop@6.8.0-1046.50?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1046.50"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1001.3",
"6.8.0-1002.4",
"6.8.0-1003.5",
"6.8.0-1004.6",
"6.8.0-1006.8",
"6.8.0-1007.9",
"6.8.0-1008.10",
"6.8.0-1009.11",
"6.8.0-1010.12",
"6.8.0-1011.13",
"6.8.0-1012.14",
"6.8.0-1013.15",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1022.24",
"6.8.0-1023.25",
"6.8.0-1024.26",
"6.8.0-1025.28",
"6.8.0-1026.29",
"6.8.0-1027.30",
"6.8.0-1028.31",
"6.8.0-1029.32",
"6.8.0-1030.33",
"6.8.0-1031.34",
"6.8.0-1035.38",
"6.8.0-1036.39",
"6.8.0-1037.40",
"6.8.0-1038.41",
"6.8.0-1041.44",
"6.8.0-1042.45",
"6.8.0-1045.48"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-cloud-tools-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-headers-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-lib-rust-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-hwe-6.11-tools-6.11.0-29",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-ipu7-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-usbio-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-modules-vision-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-29-generic",
"binary_version": "6.11.0-29.29~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-29-generic-64k",
"binary_version": "6.11.0-29.29~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.11",
"purl": "pkg:deb/ubuntu/linux-hwe-6.11@6.11.0-29.29~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-17.17~24.04.2",
"6.11.0-19.19~24.04.1",
"6.11.0-21.21~24.04.1",
"6.11.0-24.24~24.04.1",
"6.11.0-25.25~24.04.1",
"6.11.0-26.26~24.04.1",
"6.11.0-28.28~24.04.1",
"6.11.0-29.29~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-cloud-tools-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-headers-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-hwe-6.14-tools-6.14.0-37",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-lib-rust-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-ipu6-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-ipu7-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-usbio-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-modules-vision-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic-64k",
"binary_version": "6.14.0-37.37~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.14",
"purl": "pkg:deb/ubuntu/linux-hwe-6.14@6.14.0-37.37~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-24.24~24.04.3",
"6.14.0-27.27~24.04.1",
"6.14.0-28.28~24.04.1",
"6.14.0-29.29~24.04.1",
"6.14.0-32.32~24.04.1",
"6.14.0-33.33~24.04.1",
"6.14.0-34.34~24.04.1",
"6.14.0-35.35~24.04.1",
"6.14.0-36.36~24.04.1",
"6.14.0-37.37~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-buildinfo-6.17.0-42-generic-64k",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-cloud-tools-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-headers-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-headers-6.17.0-42-generic-64k",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-hwe-6.17-cloud-tools-6.17.0-42",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-hwe-6.17-headers-6.17.0-42",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-hwe-6.17-tools-6.17.0-42",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-image-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-image-unsigned-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-image-unsigned-6.17.0-42-generic-64k",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-lib-rust-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-6.17.0-42-generic-64k",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-extra-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-usbio-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-modules-vision-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-tools-6.17.0-42-generic",
"binary_version": "6.17.0-42.42"
},
{
"binary_name": "linux-tools-6.17.0-42-generic-64k",
"binary_version": "6.17.0-42.42"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-hwe-6.17",
"purl": "pkg:deb/ubuntu/linux-hwe-6.17@6.17.0-42.42?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-14.14~24.04.1",
"6.17.0-19.19~24.04.2",
"6.17.0-20.20~24.04.1",
"6.17.0-22.22~24.04.1",
"6.17.0-23.23~24.04.1",
"6.17.0-29.29~24.04.1",
"6.17.0-35.35~24.04.1",
"6.17.0-40.40~24.04.1",
"6.17.0-41.41~24.04.1",
"6.17.0-42.42"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-headers-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-ibm-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-ibm-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-modules-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
},
{
"binary_name": "linux-tools-6.8.0-1061-ibm",
"binary_version": "6.8.0-1061.62"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-ibm",
"purl": "pkg:deb/ubuntu/linux-ibm@6.8.0-1061.62?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.62"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1009.9",
"6.8.0-1001.1",
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1015.15",
"6.8.0-1016.16",
"6.8.0-1017.17",
"6.8.0-1018.18",
"6.8.0-1019.19",
"6.8.0-1022.22",
"6.8.0-1023.23",
"6.8.0-1024.24",
"6.8.0-1025.25",
"6.8.0-1026.26",
"6.8.0-1027.27",
"6.8.0-1028.28",
"6.8.0-1029.29",
"6.8.0-1030.30",
"6.8.0-1033.33",
"6.8.0-1036.36",
"6.8.0-1037.37",
"6.8.0-1038.38",
"6.8.0-1039.39",
"6.8.0-1040.40",
"6.8.0-1041.41",
"6.8.0-1042.42",
"6.8.0-1043.43",
"6.8.0-1044.44",
"6.8.0-1045.45",
"6.8.0-1049.49",
"6.8.0-1050.50",
"6.8.0-1051.51",
"6.8.0-1052.52",
"6.8.0-1055.56",
"6.8.0-1057.58",
"6.8.0-1060.61"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-buildinfo-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-headers-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-headers-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-lowlatency-cloud-tools-6.8.0-136",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-lowlatency-headers-6.8.0-136",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-lowlatency-lib-rust-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-lowlatency-tools-6.8.0-136",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-modules-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-modules-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-tools-6.8.0-136-lowlatency",
"binary_version": "6.8.0-136.136.2"
},
{
"binary_name": "linux-tools-6.8.0-136-lowlatency-64k",
"binary_version": "6.8.0-136.136.2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-lowlatency",
"purl": "pkg:deb/ubuntu/linux-lowlatency@6.8.0-136.136.2?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136.2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9.1",
"6.6.0-14.14.1",
"6.8.0-7.7.1",
"6.8.0-25.25.3",
"6.8.0-28.28.1",
"6.8.0-31.31.1",
"6.8.0-35.35.1",
"6.8.0-36.36.1",
"6.8.0-38.38.1",
"6.8.0-39.39.1",
"6.8.0-40.40.1",
"6.8.0-41.41.1",
"6.8.0-44.44.1",
"6.8.0-45.45.1",
"6.8.0-47.47.1",
"6.8.0-48.48.3",
"6.8.0-49.49.1",
"6.8.0-50.51.1",
"6.8.0-51.52.1",
"6.8.0-52.53.1",
"6.8.0-53.55.2",
"6.8.0-54.56.1",
"6.8.0-55.57.1",
"6.8.0-56.58.1",
"6.8.0-57.59.1",
"6.8.0-58.60.1",
"6.8.0-59.61.1",
"6.8.0-60.63.1",
"6.8.0-62.65.1",
"6.8.0-63.66.1",
"6.8.0-64.67.1",
"6.8.0-65.68.1",
"6.8.0-78.78.1",
"6.8.0-79.79.1",
"6.8.0-83.83.1",
"6.8.0-84.84.1",
"6.8.0-85.85.1",
"6.8.0-86.87.1",
"6.8.0-87.88.1",
"6.8.0-88.89.1",
"6.8.0-90.91.1",
"6.8.0-94.96.1",
"6.8.0-100.100.1",
"6.8.0-101.101.1",
"6.8.0-106.106.1",
"6.8.0-107.107.1",
"6.8.0-110.110.1",
"6.8.0-111.111.1",
"6.8.0-117.117.1",
"6.8.0-134.134.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-headers-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-cloud-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-headers-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-lib-rust-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-lowlatency-hwe-6.11-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1016-lowlatency",
"binary_version": "6.11.0-1016.17~24.04.1"
},
{
"binary_name": "linux-tools-6.11.0-1016-lowlatency-64k",
"binary_version": "6.11.0-1016.17~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-lowlatency-hwe-6.11",
"purl": "pkg:deb/ubuntu/linux-lowlatency-hwe-6.11@6.11.0-1016.17~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1009.10~24.04.1",
"6.11.0-1011.12~24.04.1",
"6.11.0-1012.13~24.04.1",
"6.11.0-1013.14~24.04.1",
"6.11.0-1014.15~24.04.1",
"6.11.0-1015.16~24.04.2",
"6.11.0-1016.17~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-nvidia-headers-6.8.0-1059",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-nvidia-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia",
"binary_version": "6.8.0-1059.62"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia-64k",
"binary_version": "6.8.0-1059.62"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia",
"purl": "pkg:deb/ubuntu/linux-nvidia@6.8.0-1059.62?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1059.62"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.21",
"6.8.0-1020.22",
"6.8.0-1021.23",
"6.8.0-1022.25",
"6.8.0-1023.26",
"6.8.0-1024.27",
"6.8.0-1025.28",
"6.8.0-1026.29",
"6.8.0-1027.30",
"6.8.0-1028.31",
"6.8.0-1029.32",
"6.8.0-1030.33",
"6.8.0-1031.34",
"6.8.0-1032.35",
"6.8.0-1035.38",
"6.8.0-1036.39",
"6.8.0-1038.41",
"6.8.0-1039.42",
"6.8.0-1040.43",
"6.8.0-1041.44",
"6.8.0-1042.45",
"6.8.0-1043.46",
"6.8.0-1044.47",
"6.8.0-1045.48",
"6.8.0-1046.49",
"6.8.0-1047.50",
"6.8.0-1049.52",
"6.8.0-1050.53",
"6.8.0-1051.54",
"6.8.0-1052.55",
"6.8.0-1054.57",
"6.8.0-1055.58",
"6.8.0-1058.61"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-buildinfo-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-headers-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-headers-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-extra-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-extra-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-modules-nvidia-fs-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-headers-6.11.0-1016",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-lib-rust-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-nvidia-6.11-tools-6.11.0-1016",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-tools-6.11.0-1016-nvidia",
"binary_version": "6.11.0-1016.16"
},
{
"binary_name": "linux-tools-6.11.0-1016-nvidia-64k",
"binary_version": "6.11.0-1016.16"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-6.11",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.11@6.11.0-1016.16?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1002.2",
"6.11.0-1003.3",
"6.11.0-1007.7",
"6.11.0-1010.10",
"6.11.0-1011.11",
"6.11.0-1012.12",
"6.11.0-1013.13",
"6.11.0-1016.16"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-buildinfo-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-headers-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-headers-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-modules-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-modules-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-modules-nvidia-fs-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-modules-nvidia-fs-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-nvidia-6.17-headers-6.17.0-1031",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-nvidia-6.17-tools-6.17.0-1031",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-tools-6.17.0-1031-nvidia",
"binary_version": "6.17.0-1031.31"
},
{
"binary_name": "linux-tools-6.17.0-1031-nvidia-64k",
"binary_version": "6.17.0-1031.31"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-6.17",
"purl": "pkg:deb/ubuntu/linux-nvidia-6.17@6.17.0-1031.31?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4",
"6.17.0-1008.8",
"6.17.0-1014.14",
"6.17.0-1018.18",
"6.17.0-1021.21",
"6.17.0-1026.26",
"6.17.0-1029.29",
"6.17.0-1031.31"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-headers-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-modules-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-modules-nvidia-fs-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-nvidia-lowlatency-headers-6.8.0-1059",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-nvidia-lowlatency-tools-6.8.0-1059",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia-lowlatency",
"binary_version": "6.8.0-1059.62.1"
},
{
"binary_name": "linux-tools-6.8.0-1059-nvidia-lowlatency-64k",
"binary_version": "6.8.0-1059.62.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-lowlatency",
"purl": "pkg:deb/ubuntu/linux-nvidia-lowlatency@6.8.0-1059.62.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1059.62.1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1009.9.1",
"6.8.0-1011.11.1",
"6.8.0-1012.12.1",
"6.8.0-1013.14.1",
"6.8.0-1014.15.1",
"6.8.0-1015.16.1",
"6.8.0-1017.19.1",
"6.8.0-1018.20.1",
"6.8.0-1019.21.1",
"6.8.0-1020.22.1",
"6.8.0-1021.23.1",
"6.8.0-1022.25.2",
"6.8.0-1023.26.1",
"6.8.0-1024.27.1",
"6.8.0-1025.28.1",
"6.8.0-1026.29.1",
"6.8.0-1027.30.1",
"6.8.0-1028.31.1",
"6.8.0-1029.32.1",
"6.8.0-1030.33.1",
"6.8.0-1031.34.1",
"6.8.0-1032.35.1",
"6.8.0-1035.38.1",
"6.8.0-1036.39.1",
"6.8.0-1038.41.1",
"6.8.0-1039.42.1",
"6.8.0-1040.43.1",
"6.8.0-1041.44.1",
"6.8.0-1042.45.1",
"6.8.0-1043.46.1",
"6.8.0-1044.47.1",
"6.8.0-1045.48.1",
"6.8.0-1046.49.1",
"6.8.0-1047.50.1",
"6.8.0-1049.52.1",
"6.8.0-1050.53.1",
"6.8.0-1051.54.1",
"6.8.0-1052.55.1",
"6.8.0-1054.57.1",
"6.8.0-1055.58.1",
"6.8.0-1058.61.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-buildinfo-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-headers-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-headers-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-modules-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-modules-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-modules-extra-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-modules-extra-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-nvidia-tegra-headers-6.8.0-1030",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-nvidia-tegra-tools-6.8.0-1030",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-tools-6.8.0-1030-nvidia-tegra",
"binary_version": "6.8.0-1030.31"
},
{
"binary_name": "linux-tools-6.8.0-1030-nvidia-tegra-rt",
"binary_version": "6.8.0-1030.31"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-nvidia-tegra",
"purl": "pkg:deb/ubuntu/linux-nvidia-tegra@6.8.0-1030.31?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1030.31"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1016.16",
"6.8.0-1019.19",
"6.8.0-1020.20",
"6.8.0-1021.21",
"6.8.0-1022.22",
"6.8.0-1023.23",
"6.8.0-1024.24",
"6.8.0-1025.25",
"6.8.0-1026.26",
"6.8.0-1029.30"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-headers-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-image-unsigned-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-ipu6-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-ipu7-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-iwlwifi-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-usbio-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-modules-vision-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-oem-6.11-headers-6.11.0-1027",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-oem-6.11-tools-6.11.0-1027",
"binary_version": "6.11.0-1027.27"
},
{
"binary_name": "linux-tools-6.11.0-1027-oem",
"binary_version": "6.11.0-1027.27"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.11",
"purl": "pkg:deb/ubuntu/linux-oem-6.11@6.11.0-1027.27?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.11.0-1007.7",
"6.11.0-1008.8",
"6.11.0-1009.9",
"6.11.0-1010.10",
"6.11.0-1011.11",
"6.11.0-1012.12",
"6.11.0-1013.13",
"6.11.0-1015.15",
"6.11.0-1016.16",
"6.11.0-1017.17",
"6.11.0-1018.18",
"6.11.0-1020.20",
"6.11.0-1021.21",
"6.11.0-1022.22",
"6.11.0-1023.23",
"6.11.0-1024.24",
"6.11.0-1025.25",
"6.11.0-1027.27"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-headers-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-ipu6-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-ipu7-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-usbio-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-modules-vision-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-oem-6.14-headers-6.14.0-1020",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-oem-6.14-tools-6.14.0-1020",
"binary_version": "6.14.0-1020.20"
},
{
"binary_name": "linux-tools-6.14.0-1020-oem",
"binary_version": "6.14.0-1020.20"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.14",
"purl": "pkg:deb/ubuntu/linux-oem-6.14@6.14.0-1020.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1004.4",
"6.14.0-1005.5",
"6.14.0-1006.6",
"6.14.0-1007.7",
"6.14.0-1008.8",
"6.14.0-1010.10",
"6.14.0-1011.11",
"6.14.0-1012.12",
"6.14.0-1013.13",
"6.14.0-1014.14",
"6.14.0-1015.15",
"6.14.0-1016.16",
"6.14.0-1017.17",
"6.14.0-1018.18",
"6.14.0-1019.19",
"6.14.0-1020.20"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-headers-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-evdi-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-usbio-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-modules-vision-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-oem-6.17-headers-6.17.0-1032",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-oem-6.17-tools-6.17.0-1032",
"binary_version": "6.17.0-1032.32"
},
{
"binary_name": "linux-tools-6.17.0-1032-oem",
"binary_version": "6.17.0-1032.32"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.17",
"purl": "pkg:deb/ubuntu/linux-oem-6.17@6.17.0-1032.32?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1009.9",
"6.17.0-1010.10",
"6.17.0-1011.11",
"6.17.0-1012.12",
"6.17.0-1017.17",
"6.17.0-1020.20",
"6.17.0-1023.23",
"6.17.0-1024.24",
"6.17.0-1025.25",
"6.17.0-1028.28",
"6.17.0-1030.30",
"6.17.0-1032.32"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-headers-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-modules-usbio-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-oem-6.8-headers-6.8.0-1032",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-oem-6.8-tools-6.8.0-1032",
"binary_version": "6.8.0-1032.32"
},
{
"binary_name": "linux-tools-6.8.0-1032-oem",
"binary_version": "6.8.0-1032.32"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oem-6.8",
"purl": "pkg:deb/ubuntu/linux-oem-6.8@6.8.0-1032.32?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.9",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1016.16",
"6.8.0-1017.17",
"6.8.0-1018.18",
"6.8.0-1019.19",
"6.8.0-1020.20",
"6.8.0-1024.24",
"6.8.0-1025.25",
"6.8.0-1026.26",
"6.8.0-1027.27",
"6.8.0-1028.28",
"6.8.0-1029.29",
"6.8.0-1030.30",
"6.8.0-1031.31",
"6.8.0-1032.32"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-buildinfo-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-headers-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-headers-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-modules-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-modules-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-modules-extra-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-modules-extra-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-oracle-headers-6.8.0-1058",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-oracle-tools-6.8.0-1058",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-tools-6.8.0-1058-oracle",
"binary_version": "6.8.0-1058.61"
},
{
"binary_name": "linux-tools-6.8.0-1058-oracle-64k",
"binary_version": "6.8.0-1058.61"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.8.0-1058.61?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1058.61"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1010.10",
"6.6.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1008.8",
"6.8.0-1010.10",
"6.8.0-1011.11",
"6.8.0-1012.12",
"6.8.0-1013.13",
"6.8.0-1014.14",
"6.8.0-1015.16",
"6.8.0-1016.17",
"6.8.0-1017.18",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1020.21",
"6.8.0-1021.22",
"6.8.0-1022.23",
"6.8.0-1023.24",
"6.8.0-1024.25",
"6.8.0-1025.26",
"6.8.0-1026.27",
"6.8.0-1027.28",
"6.8.0-1028.29",
"6.8.0-1029.30",
"6.8.0-1030.31",
"6.8.0-1032.33",
"6.8.0-1033.34",
"6.8.0-1035.36",
"6.8.0-1037.38",
"6.8.0-1038.39",
"6.8.0-1039.40",
"6.8.0-1040.41",
"6.8.0-1041.42",
"6.8.0-1042.43",
"6.8.0-1043.44",
"6.8.0-1044.45",
"6.8.0-1047.48",
"6.8.0-1049.50",
"6.8.0-1050.51",
"6.8.0-1052.53",
"6.8.0-1054.55",
"6.8.0-1057.58"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-buildinfo-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-oracle-6.14-headers-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-oracle-6.14-tools-6.14.0-1018",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-oracle",
"binary_version": "6.14.0-1018.18~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1018-oracle-64k",
"binary_version": "6.14.0-1018.18~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle-6.14",
"purl": "pkg:deb/ubuntu/linux-oracle-6.14@6.14.0-1018.18~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1007.7~24.04.1",
"6.14.0-1009.9~24.04.1",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1",
"6.14.0-1018.18~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-buildinfo-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-headers-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-headers-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-extra-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-extra-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-oracle-6.17-headers-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-oracle-6.17-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-tools-6.17.0-1020-oracle",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-tools-6.17.0-1020-oracle-64k",
"binary_version": "6.17.0-1020.20"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-oracle-6.17",
"purl": "pkg:deb/ubuntu/linux-oracle-6.17@6.17.0-1020.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.4~24.04.2",
"6.17.0-1007.7~24.04.1",
"6.17.0-1009.9~24.04.1",
"6.17.0-1010.10~24.04.1",
"6.17.0-1011.11~24.04.1",
"6.17.0-1014.14~24.04.1",
"6.17.0-1016.16~24.04.1",
"6.17.0-1018.18~24.04.1",
"6.17.0-1019.19~24.04.3",
"6.17.0-1020.20"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1061-raspi",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-headers-6.8.0-1061-raspi",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-image-6.8.0-1061-raspi",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-modules-6.8.0-1061-raspi",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-raspi-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-raspi-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.65"
},
{
"binary_name": "linux-tools-6.8.0-1061-raspi",
"binary_version": "6.8.0-1061.65"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.8.0-1061.65?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.65"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-1005.7",
"6.7.0-1001.1",
"6.8.0-1001.1",
"6.8.0-1002.2",
"6.8.0-1003.3",
"6.8.0-1004.4",
"6.8.0-1005.5",
"6.8.0-1006.6",
"6.8.0-1007.7",
"6.8.0-1008.8",
"6.8.0-1009.10",
"6.8.0-1010.11",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.16",
"6.8.0-1015.17",
"6.8.0-1016.18",
"6.8.0-1017.19",
"6.8.0-1018.20",
"6.8.0-1019.23",
"6.8.0-1020.24",
"6.8.0-1024.28",
"6.8.0-1028.32",
"6.8.0-1029.33",
"6.8.0-1030.34",
"6.8.0-1031.35",
"6.8.0-1032.36",
"6.8.0-1035.39",
"6.8.0-1036.40",
"6.8.0-1038.42",
"6.8.0-1039.43",
"6.8.0-1040.44",
"6.8.0-1041.45",
"6.8.0-1042.46",
"6.8.0-1043.47",
"6.8.0-1044.48",
"6.8.0-1045.49",
"6.8.0-1047.51",
"6.8.0-1048.52",
"6.8.0-1050.54",
"6.8.0-1051.55",
"6.8.0-1052.56",
"6.8.0-1053.57",
"6.8.0-1056.60",
"6.8.0-1057.61",
"6.8.0-1060.64"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-headers-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-image-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-modules-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-raspi-realtime-headers-6.8.0-2019",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-raspi-realtime-tools-6.8.0-2019",
"binary_version": "6.8.0-2019.20"
},
{
"binary_name": "linux-tools-6.8.0-2019-raspi-realtime",
"binary_version": "6.8.0-2019.20"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-raspi-realtime",
"purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2019.20?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-2019.20"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-headers-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-extra-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-cloud-tools-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-headers-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-realtime-tools-6.8.1-1015",
"binary_version": "6.8.1-1015.16"
},
{
"binary_name": "linux-tools-6.8.1-1015-realtime",
"binary_version": "6.8.1-1015.16"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1015.16?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.1-1015.16"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-headers-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-image-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-modules-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-riscv-headers-6.8.0-60",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-riscv-tools-6.8.0-60",
"binary_version": "6.8.0-60.63.1"
},
{
"binary_name": "linux-tools-6.8.0-60-generic",
"binary_version": "6.8.0-60.63.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@6.8.0-60.63.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.5.0-9.9.1",
"6.8.0-20.20.1",
"6.8.0-28.28.1",
"6.8.0-31.31.1",
"6.8.0-35.35.1",
"6.8.0-36.36.1",
"6.8.0-38.38.1",
"6.8.0-39.39.1",
"6.8.0-40.40.1",
"6.8.0-41.41.1",
"6.8.0-44.44.1",
"6.8.0-47.47.1",
"6.8.0-48.48.1",
"6.8.0-49.49.1",
"6.8.0-50.51.1",
"6.8.0-51.52.1",
"6.8.0-52.53.1",
"6.8.0-53.55.1",
"6.8.0-55.57.1",
"6.8.0-56.58.1",
"6.8.0-57.59.1",
"6.8.0-58.60.1",
"6.8.0-59.61.1",
"6.8.0-60.63.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-image-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.14-headers-6.14.0-37",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.14-tools-6.14.0-37",
"binary_version": "6.14.0-37.37.1~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-37-generic",
"binary_version": "6.14.0-37.37.1~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv-6.14",
"purl": "pkg:deb/ubuntu/linux-riscv-6.14@6.14.0-37.37.1~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-22.22.1~24.04.1",
"6.14.0-23.23.1~24.04.1",
"6.14.0-24.24.1~24.04.1",
"6.14.0-27.27.1~24.04.1",
"6.14.0-28.28.1~24.04.1",
"6.14.0-29.29.1~24.04.1",
"6.14.0-32.32.1~24.04.1",
"6.14.0-33.33.1~24.04.1",
"6.14.0-34.34.1~24.04.1",
"6.14.0-35.35.1~24.04.1",
"6.14.0-36.36.1~24.04.1",
"6.14.0-37.37.1~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-38-generic",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-headers-6.17.0-38-generic",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-image-6.17.0-38-generic",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-modules-6.17.0-38-generic",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.17-headers-6.17.0-38",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-riscv-6.17-tools-6.17.0-38",
"binary_version": "6.17.0-38.38.1~24.04.1"
},
{
"binary_name": "linux-tools-6.17.0-38-generic",
"binary_version": "6.17.0-38.38.1~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-riscv-6.17",
"purl": "pkg:deb/ubuntu/linux-riscv-6.17@6.17.0-38.38.1~24.04.1?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-14.14.1~24.04.1",
"6.17.0-19.19.1~24.04.1",
"6.17.0-20.20.1~24.04.1",
"6.17.0-22.22.1~24.04.1",
"6.17.0-23.23.1~24.04.1",
"6.17.0-29.29.1~24.04.1",
"6.17.0-35.35.1~24.04.1",
"6.17.0-38.38.1~24.04.1"
]
},
{
"ecosystem_specific": {
"availability": "No subscription required",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1033-xilinx",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-headers-6.8.0-1033-xilinx",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-image-6.8.0-1033-xilinx",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-modules-6.8.0-1033-xilinx",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-tools-6.8.0-1033-xilinx",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-xilinx-headers-6.8.0-1033",
"binary_version": "6.8.0-1033.34"
},
{
"binary_name": "linux-xilinx-tools-6.8.0-1033",
"binary_version": "6.8.0-1033.34"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:24.04:LTS",
"name": "linux-xilinx",
"purl": "pkg:deb/ubuntu/linux-xilinx@6.8.0-1033.34?arch=source\u0026distro=noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1033.34"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.9",
"6.8.0-1009.10",
"6.8.0-1011.12",
"6.8.0-1012.13",
"6.8.0-1013.14",
"6.8.0-1014.15",
"6.8.0-1015.16",
"6.8.0-1017.18",
"6.8.0-1018.19",
"6.8.0-1019.20",
"6.8.0-1020.21",
"6.8.0-1021.22",
"6.8.0-1022.23",
"6.8.0-1023.24",
"6.8.0-1024.25",
"6.8.0-1028.29",
"6.8.0-1029.30",
"6.8.0-1032.33"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-bluefield-headers-6.8.0-1029",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-bluefield-tools-6.8.0-1029",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-buildinfo-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-buildinfo-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-headers-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-headers-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-modules-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-modules-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-modules-extra-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-modules-extra-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-tools-6.8.0-1029-bluefield",
"binary_version": "6.8.0-1029.34"
},
{
"binary_name": "linux-tools-6.8.0-1029-bluefield-64k",
"binary_version": "6.8.0-1029.34"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Nvidia-BlueField:24.04:LTS",
"name": "linux-bluefield",
"purl": "pkg:deb/ubuntu/linux-bluefield@6.8.0-1029.34?arch=source\u0026distro=bluefield/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1011.15",
"6.8.0-1012.16",
"6.8.0-1013.17",
"6.8.0-1014.18",
"6.8.0-1016.20",
"6.8.0-1017.21",
"6.8.0-1022.26",
"6.8.0-1023.27",
"6.8.0-1026.30",
"6.8.0-1028.33",
"6.8.0-1029.34"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-aws-fips-cloud-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-aws-fips-headers-6.8.0-1061",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-aws-fips-tools-6.8.0-1061",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-buildinfo-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-headers-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-modules-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
},
{
"binary_name": "linux-tools-6.8.0-1061-aws-fips",
"binary_version": "6.8.0-1061.64+fips1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-aws-fips",
"purl": "pkg:deb/ubuntu/linux-aws-fips@6.8.0-1061.64+fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1061.64+fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1035.37+fips1",
"6.8.0-1036.38+fips1",
"6.8.0-1038.40+fips1",
"6.8.0-1039.41+fips1",
"6.8.0-1040.42+fips1",
"6.8.0-1041.43+fips1",
"6.8.0-1042.44+fips1",
"6.8.0-1043.45+fips1",
"6.8.0-1044.46+fips1",
"6.8.0-1045.47+fips1",
"6.8.0-1046.49+fips1",
"6.8.0-1047.50+fips1",
"6.8.0-1050.53+fips1",
"6.8.0-1051.54+fips1",
"6.8.0-1052.55+fips1",
"6.8.0-1053.56+fips1",
"6.8.0-1055.58+fips1",
"6.8.0-1057.60+fips1",
"6.8.0-1060.63+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-azure-fips-cloud-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-azure-fips-headers-6.8.0-1063",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-azure-fips-tools-6.8.0-1063",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-buildinfo-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-cloud-tools-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-headers-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-modules-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-modules-extra-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-modules-involflt-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
},
{
"binary_name": "linux-tools-6.8.0-1063-azure-fips",
"binary_version": "6.8.0-1063.71+fips2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-azure-fips",
"purl": "pkg:deb/ubuntu/linux-azure-fips@6.8.0-1063.71+fips2?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1063.71+fips2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1034.39+fips1",
"6.8.0-1040.46+fips1",
"6.8.0-1044.50+fips1",
"6.8.0-1046.52+fips1",
"6.8.0-1047.53+fips1",
"6.8.0-1052.58+fips1",
"6.8.0-1053.59+fips1",
"6.8.0-1054.60+fips1",
"6.8.0-1059.65+fips1",
"6.8.0-1062.69+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-cloud-tools-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-fips-cloud-tools-6.8.0-136",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-fips-headers-6.8.0-136",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-fips-lib-rust-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-fips-tools-6.8.0-136",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-headers-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-image-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-image-hmac-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-image-unsigned-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-modules-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-modules-extra-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-modules-ipu6-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-modules-usbio-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
},
{
"binary_name": "linux-tools-6.8.0-136-fips",
"binary_version": "6.8.0-136.136+fips2"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-fips",
"purl": "pkg:deb/ubuntu/linux-fips@6.8.0-136.136+fips2?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-136.136+fips2"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-38.38+fips4",
"6.8.0-78.78+fips1",
"6.8.0-79.79+fips1",
"6.8.0-83.83+fips1",
"6.8.0-84.84+fips1",
"6.8.0-85.85+fips1",
"6.8.0-86.87+fips1",
"6.8.0-87.88+fips1",
"6.8.0-88.89+fips1",
"6.8.0-90.91+fips1",
"6.8.0-94.96+fips1",
"6.8.0-100.100+fips1",
"6.8.0-101.101+fips1",
"6.8.0-106.106+fips1",
"6.8.0-107.107+fips1",
"6.8.0-110.110+fips2",
"6.8.0-111.111+fips1",
"6.8.0-116.116+fips1",
"6.8.0-124.124+fips1",
"6.8.0-134.134+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-gcp-fips-headers-6.8.0-1064",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-gcp-fips-tools-6.8.0-1064",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-headers-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-image-unsigned-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-image-unsigned-hmac-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-modules-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-modules-extra-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
},
{
"binary_name": "linux-tools-6.8.0-1064-gcp-fips",
"binary_version": "6.8.0-1064.72+fips1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:FIPS-updates:24.04:LTS",
"name": "linux-gcp-fips",
"purl": "pkg:deb/ubuntu/linux-gcp-fips@6.8.0-1064.72+fips1?arch=source\u0026distro=fips-updates/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-1064.72+fips1"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1036.38+fips1",
"6.8.0-1037.39+fips1",
"6.8.0-1039.41+fips1",
"6.8.0-1040.42+fips1",
"6.8.0-1041.43+fips1",
"6.8.0-1042.45+fips1",
"6.8.0-1043.46+fips1",
"6.8.0-1044.47+fips1",
"6.8.0-1045.48+fips1",
"6.8.0-1046.49+fips1",
"6.8.0-1047.50+fips1",
"6.8.0-1048.51+fips1",
"6.8.0-1052.55+fips1",
"6.8.0-1053.56+fips1",
"6.8.0-1054.57+fips1",
"6.8.0-1055.58+fips1",
"6.8.0-1058.61+fips1",
"6.8.0-1060.63+fips1",
"6.8.0-1063.69+fips1"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.0-2050-raspi-realtime",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-headers-6.8.0-2050-raspi-realtime",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-image-6.8.0-2050-raspi-realtime",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-modules-6.8.0-2050-raspi-realtime",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-raspi-realtime-headers-6.8.0-2050",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-raspi-realtime-tools-6.8.0-2050",
"binary_version": "6.8.0-2050.52"
},
{
"binary_name": "linux-tools-6.8.0-2050-raspi-realtime",
"binary_version": "6.8.0-2050.52"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-raspi-realtime",
"purl": "pkg:deb/ubuntu/linux-raspi-realtime@6.8.0-2050.52?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.0-2050.52"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.7.0-2001.1",
"6.8.0-2001.1",
"6.8.0-2002.2",
"6.8.0-2004.4",
"6.8.0-2005.5",
"6.8.0-2006.6",
"6.8.0-2007.7",
"6.8.0-2008.8",
"6.8.0-2009.9",
"6.8.0-2010.10",
"6.8.0-2011.11",
"6.8.0-2012.12",
"6.8.0-2013.14",
"6.8.0-2014.15",
"6.8.0-2015.16",
"6.8.0-2016.17",
"6.8.0-2017.18",
"6.8.0-2018.19",
"6.8.0-2019.20",
"6.8.0-2022.23",
"6.8.0-2023.24",
"6.8.0-2024.25",
"6.8.0-2025.26",
"6.8.0-2026.27",
"6.8.0-2028.29",
"6.8.0-2029.30",
"6.8.0-2030.31",
"6.8.0-2031.32",
"6.8.0-2032.33",
"6.8.0-2033.34",
"6.8.0-2034.35",
"6.8.0-2035.36",
"6.8.0-2036.37",
"6.8.0-2037.38",
"6.8.0-2038.39",
"6.8.0-2040.41",
"6.8.0-2041.42",
"6.8.0-2042.43",
"6.8.0-2043.44",
"6.8.0-2045.46",
"6.8.0-2046.47",
"6.8.0-2049.50"
]
},
{
"ecosystem_specific": {
"availability": "Available with Ubuntu Pro: https://ubuntu.com/pro",
"binaries": [
{
"binary_name": "linux-buildinfo-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-cloud-tools-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-headers-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-image-unsigned-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-modules-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-modules-extra-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-modules-iwlwifi-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-realtime-cloud-tools-6.8.1-1056",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-realtime-headers-6.8.1-1056",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-realtime-tools-6.8.1-1056",
"binary_version": "6.8.1-1056.57"
},
{
"binary_name": "linux-tools-6.8.1-1056-realtime",
"binary_version": "6.8.1-1056.57"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.8.1-1056.57?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "6.8.1-1056.57"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.8.0-1008.19",
"6.8.1-1001.1",
"6.8.1-1002.2",
"6.8.1-1003.3",
"6.8.1-1004.4",
"6.8.1-1005.5",
"6.8.1-1006.6",
"6.8.1-1007.7",
"6.8.1-1008.8",
"6.8.1-1009.9",
"6.8.1-1010.10",
"6.8.1-1011.11",
"6.8.1-1012.12",
"6.8.1-1013.14",
"6.8.1-1014.15",
"6.8.1-1015.16",
"6.8.1-1016.17",
"6.8.1-1017.18",
"6.8.1-1018.19",
"6.8.1-1019.20",
"6.8.1-1020.21",
"6.8.1-1021.22",
"6.8.1-1022.23",
"6.8.1-1023.24",
"6.8.1-1024.25",
"6.8.1-1025.26",
"6.8.1-1026.27",
"6.8.1-1030.31",
"6.8.1-1031.32",
"6.8.1-1033.34",
"6.8.1-1034.35",
"6.8.1-1035.36",
"6.8.1-1036.37",
"6.8.1-1037.38",
"6.8.1-1038.39",
"6.8.1-1039.40",
"6.8.1-1040.41",
"6.8.1-1041.42",
"6.8.1-1042.43",
"6.8.1-1045.46",
"6.8.1-1046.47",
"6.8.1-1047.48",
"6.8.1-1048.49",
"6.8.1-1051.52",
"6.8.1-1052.53",
"6.8.1-1055.56"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-cloud-tools-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-headers-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-image-unsigned-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-extra-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-modules-iwlwifi-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-cloud-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-headers-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-realtime-6.14-tools-6.14.0-1017",
"binary_version": "6.14.0-1017.17~24.04.1"
},
{
"binary_name": "linux-tools-6.14.0-1017-realtime",
"binary_version": "6.14.0-1017.17~24.04.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime-6.14",
"purl": "pkg:deb/ubuntu/linux-realtime-6.14@6.14.0-1017.17~24.04.1?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1003.3~24.04.3",
"6.14.0-1010.10~24.04.1",
"6.14.0-1011.11~24.04.1",
"6.14.0-1012.12~24.04.1",
"6.14.0-1013.13~24.04.1",
"6.14.0-1014.14~24.04.1",
"6.14.0-1015.15~24.04.1",
"6.14.0-1016.16~24.04.1",
"6.14.0-1017.17~24.04.1"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-headers-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-modules-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-modules-extra-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-realtime-6.17-cloud-tools-6.17.0-1019",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-realtime-6.17-headers-6.17.0-1019",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-realtime-6.17-tools-6.17.0-1019",
"binary_version": "6.17.0-1019.22"
},
{
"binary_name": "linux-tools-6.17.0-1019-realtime",
"binary_version": "6.17.0-1019.22"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:Pro:Realtime:24.04:LTS",
"name": "linux-realtime-6.17",
"purl": "pkg:deb/ubuntu/linux-realtime-6.17@6.17.0-1019.22?arch=source\u0026distro=realtime/noble"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1004.5~24.04.2",
"6.17.0-1006.7~24.04.1",
"6.17.0-1008.9~24.04.1",
"6.17.0-1009.10~24.04.1",
"6.17.0-1010.11~24.04.1",
"6.17.0-1011.12~24.04.1",
"6.17.0-1013.15~24.04.1",
"6.17.0-1014.16~24.04.1",
"6.17.0-1017.19~24.04.1",
"6.17.0-1018.20~24.04.1",
"6.17.0-1019.22"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "bpftool",
"binary_version": "7.7.0+6.17.0-40.40"
},
{
"binary_name": "linux-buildinfo-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-buildinfo-6.17.0-40-generic-64k",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-cloud-tools-6.17.0-40",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-cloud-tools-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-cloud-tools-common",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-headers-6.17.0-40",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-headers-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-headers-6.17.0-40-generic-64k",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-image-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-image-unsigned-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-image-unsigned-6.17.0-40-generic-64k",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-lib-rust-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-6.17.0-40-generic-64k",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-ipu6-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-ipu7-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-usbio-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-modules-vision-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-perf",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-source-6.17.0",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-tools-6.17.0-40",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-tools-6.17.0-40-generic",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-tools-6.17.0-40-generic-64k",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-tools-common",
"binary_version": "6.17.0-40.40"
},
{
"binary_name": "linux-tools-host",
"binary_version": "6.17.0-40.40"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux",
"purl": "pkg:deb/ubuntu/linux@6.17.0-40.40?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-15.15",
"6.15.0-3.3",
"6.15.0-4.4",
"6.16.0-13.13",
"6.16.0-16.16",
"6.17.0-3.3",
"6.17.0-4.4",
"6.17.0-5.5",
"6.17.0-6.6",
"6.17.0-7.7",
"6.17.0-8.8",
"6.17.0-12.12",
"6.17.0-14.14",
"6.17.0-19.19",
"6.17.0-20.20",
"6.17.0-22.22",
"6.17.0-23.23",
"6.17.0-29.29",
"6.17.0-35.35",
"6.17.0-40.40"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-aws-cloud-tools-6.17.0-1019",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-aws-headers-6.17.0-1019",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-aws-tools-6.17.0-1019",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-buildinfo-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-buildinfo-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-headers-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-headers-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-modules-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-modules-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-tools-6.17.0-1019-aws",
"binary_version": "6.17.0-1019.19"
},
{
"binary_name": "linux-tools-6.17.0-1019-aws-64k",
"binary_version": "6.17.0-1019.19"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-aws",
"purl": "pkg:deb/ubuntu/linux-aws@6.17.0-1019.19?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.14.0-1007.7+25.10.2",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10",
"6.17.0-1012.12",
"6.17.0-1013.13",
"6.17.0-1015.15",
"6.17.0-1017.17",
"6.17.0-1019.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-cloud-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-azure-headers-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-azure-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-buildinfo-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-headers-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-modules-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
},
{
"binary_name": "linux-tools-6.17.0-1020-azure",
"binary_version": "6.17.0-1020.20"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-azure",
"purl": "pkg:deb/ubuntu/linux-azure@6.17.0-1020.20?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1004.4",
"6.14.0-1007.7+25.10.1",
"6.16.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1011.11",
"6.17.0-1013.13",
"6.17.0-1015.15",
"6.17.0-1017.17",
"6.17.0-1018.18",
"6.17.0-1020.20"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-azure-fde-cloud-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-azure-fde-headers-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-azure-fde-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-buildinfo-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-headers-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-modules-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
},
{
"binary_name": "linux-tools-6.17.0-1017-azure-fde",
"binary_version": "6.17.0-1017.17"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-azure-fde",
"purl": "pkg:deb/ubuntu/linux-azure-fde@6.17.0-1017.17?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1012.12",
"6.17.0-1014.14",
"6.17.0-1015.15",
"6.17.0-1017.17"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1020-gcp",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-buildinfo-6.17.0-1020-gcp-64k",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-gcp-headers-6.17.0-1020",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-gcp-tools-6.17.0-1020",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-headers-6.17.0-1020-gcp",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-headers-6.17.0-1020-gcp-64k",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-gcp",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1020-gcp-64k",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-modules-6.17.0-1020-gcp",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-modules-6.17.0-1020-gcp-64k",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-tools-6.17.0-1020-gcp",
"binary_version": "6.17.0-1020.22"
},
{
"binary_name": "linux-tools-6.17.0-1020-gcp-64k",
"binary_version": "6.17.0-1020.22"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-gcp",
"purl": "pkg:deb/ubuntu/linux-gcp@6.17.0-1020.22?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1006.6",
"6.14.0-1009.9+25.10.1",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10",
"6.17.0-1012.12",
"6.17.0-1013.13",
"6.17.0-1016.17",
"6.17.0-1018.19",
"6.17.0-1020.22"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1018-oracle",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-buildinfo-6.17.0-1018-oracle-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-headers-6.17.0-1018-oracle",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-headers-6.17.0-1018-oracle-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1018-oracle",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1018-oracle-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-6.17.0-1018-oracle",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-modules-6.17.0-1018-oracle-64k",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-oracle-headers-6.17.0-1018",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-oracle-tools-6.17.0-1018",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-tools-6.17.0-1018-oracle",
"binary_version": "6.17.0-1018.18"
},
{
"binary_name": "linux-tools-6.17.0-1018-oracle-64k",
"binary_version": "6.17.0-1018.18"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-oracle",
"purl": "pkg:deb/ubuntu/linux-oracle@6.17.0-1018.18?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.14.0-1007.7+25.10.1",
"6.16.0-1001.1",
"6.17.0-1001.1",
"6.17.0-1002.2",
"6.17.0-1003.3",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1009.9",
"6.17.0-1010.10",
"6.17.0-1011.11",
"6.17.0-1012.12",
"6.17.0-1014.14",
"6.17.0-1016.16",
"6.17.0-1018.18"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1021-raspi",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-headers-6.17.0-1021-raspi",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-image-6.17.0-1021-raspi",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-modules-6.17.0-1021-raspi",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-raspi-headers-6.17.0-1021",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-raspi-tools-6.17.0-1021",
"binary_version": "6.17.0-1021.21"
},
{
"binary_name": "linux-tools-6.17.0-1021-raspi",
"binary_version": "6.17.0-1021.21"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-raspi",
"purl": "pkg:deb/ubuntu/linux-raspi@6.17.0-1021.21?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1005.5",
"6.17.0-1003.3",
"6.17.0-1004.4",
"6.17.0-1005.5",
"6.17.0-1006.6",
"6.17.0-1007.7",
"6.17.0-1008.8",
"6.17.0-1010.10",
"6.17.0-1011.11",
"6.17.0-1013.13",
"6.17.0-1014.14",
"6.17.0-1017.17",
"6.17.0-1018.18",
"6.17.0-1021.21"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-cloud-tools-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-headers-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-image-unsigned-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-modules-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-modules-iwlwifi-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-realtime-cloud-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-realtime-headers-6.17.0-1017",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-realtime-tools-6.17.0-1017",
"binary_version": "6.17.0-1017.19"
},
{
"binary_name": "linux-tools-6.17.0-1017-realtime",
"binary_version": "6.17.0-1017.19"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-realtime",
"purl": "pkg:deb/ubuntu/linux-realtime@6.17.0-1017.19?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-1002.2",
"6.17.0-1001.2",
"6.17.0-1002.3",
"6.17.0-1003.4",
"6.17.0-1004.5",
"6.17.0-1005.6",
"6.17.0-1006.7",
"6.17.0-1008.9",
"6.17.0-1009.10",
"6.17.0-1010.11",
"6.17.0-1011.12",
"6.17.0-1013.15",
"6.17.0-1014.16",
"6.17.0-1017.19"
]
},
{
"ecosystem_specific": {
"binaries": [
{
"binary_name": "linux-buildinfo-6.17.0-40-generic",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-headers-6.17.0-40-generic",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-image-6.17.0-40-generic",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-modules-6.17.0-40-generic",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-riscv-headers-6.17.0-40",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-riscv-tools-6.17.0-40",
"binary_version": "6.17.0-40.40.1"
},
{
"binary_name": "linux-tools-6.17.0-40-generic",
"binary_version": "6.17.0-40.40.1"
}
],
"priority_reason": "Exploitation requires CAP_SYS_ADMIN or CAP_SYS_MODULE to trigger CXL device removal via sysfs unbind or module unload, which are not available to unprivileged users."
},
"package": {
"ecosystem": "Ubuntu:25.10",
"name": "linux-riscv",
"purl": "pkg:deb/ubuntu/linux-riscv@6.17.0-40.40.1?arch=source\u0026distro=questing"
},
"ranges": [
{
"events": [
{
"introduced": "0"
}
],
"type": "ECOSYSTEM"
}
],
"versions": [
"6.14.0-13.13.2",
"6.17.0-4.4.1",
"6.17.0-5.5.1",
"6.17.0-6.6.1",
"6.17.0-7.7.1",
"6.17.0-8.8.1",
"6.17.0-12.12.1",
"6.17.0-14.14.1",
"6.17.0-19.19.1",
"6.17.0-20.20.1",
"6.17.0-22.22.1",
"6.17.0-23.23.1",
"6.17.0-29.29.1",
"6.17.0-35.35.1",
"6.17.0-40.40.1"
]
}
],
"aliases": [],
"details": "In the Linux kernel, the following vulnerability has been resolved: cxl/port: Fix use after free of parent_port in cxl_detach_ep() cxl_detach_ep() is called during bottom-up removal when all CXL memory devices beneath a switch port have been removed. For each port in the hierarchy it locks both the port and its parent, removes the endpoint, and if the port is now empty, marks it dead and unregisters the port by calling delete_switch_port(). There are two places during this work where the parent_port may be used after freeing: First, a concurrent detach may have already processed a port by the time a second worker finds it via bus_find_device(). Without pinning parent_port, it may already be freed when we discover port-\u003edead and attempt to unlock the parent_port. In a production kernel that\u0027s a silent memory corruption, with lock debug, it looks like this: []DEBUG_LOCKS_WARN_ON(__owner_task(owner) != get_current()) []WARNING: kernel/locking/mutex.c:949 at __mutex_unlock_slowpath+0x1ee/0x310 []Call Trace: []mutex_unlock+0xd/0x20 []cxl_detach_ep+0x180/0x400 [cxl_core] []devm_action_release+0x10/0x20 []devres_release_all+0xa8/0xe0 []device_unbind_cleanup+0xd/0xa0 []really_probe+0x1a6/0x3e0 Second, delete_switch_port() releases three devm actions registered against parent_port. The last of those is unregister_port() and it calls device_unregister() on the child port, which can cascade. If parent_port is now also empty the device core may unregister and free it too. So by the time delete_switch_port() returns, parent_port may be free, and the subsequent device_unlock(\u0026parent_port-\u003edev) operates on freed memory. The kernel log looks same as above, with a different offset in cxl_detach_ep(). Both of these issues stem from the absence of a lifetime guarantee between a child port and its parent port. Establish a lifetime rule for ports: child ports hold a reference to their parent device until release. Take the reference when the port is allocated and drop it when released. This ensures the parent is valid for the full lifetime of the child and eliminates the use after free window in cxl_detach_ep(). This is easily reproduced with a reload of cxl_acpi in QEMU with CXL devices present.",
"id": "UBUNTU-CVE-2026-31530",
"modified": "2026-08-21T01:46:11Z",
"published": "2026-04-22T14:16:00Z",
"references": [
{
"type": "REPORT",
"url": "https://ubuntu.com/security/CVE-2026-31530"
},
{
"type": "REPORT",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31530"
},
{
"type": "REPORT",
"url": "https://git.kernel.org/linus/19d2f0b97a131198efc2c4ca3eb7f980bba8c2b4"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8567-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8574-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8574-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8595-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8596-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8595-2"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8606-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8607-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8608-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8609-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8574-3"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8595-3"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8619-1"
},
{
"type": "ADVISORY",
"url": "https://ubuntu.com/security/notices/USN-8665-1"
}
],
"related": [
"USN-8567-1",
"USN-8574-1",
"USN-8574-2",
"USN-8595-1",
"USN-8596-1",
"USN-8595-2",
"USN-8606-1",
"USN-8607-1",
"USN-8608-1",
"USN-8609-1",
"USN-8574-3",
"USN-8595-3",
"USN-8619-1",
"USN-8665-1"
],
"schema_version": "1.7.0",
"severity": [
{
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H",
"type": "CVSS_V3"
},
{
"score": "low",
"type": "Ubuntu"
}
],
"upstream": [
"CVE-2026-31530"
]
}
WID-SEC-W-2026-1252
Vulnerability from csaf_certbund - Published: 2026-04-22 22:00 - Updated: 2026-07-21 22:00| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Open Source Linux Kernel
Open Source
|
cpe:/o:linux:linux_kernel:-
|
— | |
|
Debian Linux
Debian
|
cpe:/o:debian:debian_linux:-
|
— | |
|
SUSE Linux
SUSE
|
cpe:/o:suse:suse_linux:-
|
— | |
|
Red Hat Enterprise Linux
Red Hat
|
cpe:/o:redhat:enterprise_linux:-
|
— | |
|
Ubuntu Linux
Ubuntu
|
cpe:/o:canonical:ubuntu_linux:-
|
— | |
|
SUSE openSUSE
SUSE
|
cpe:/o:suse:opensuse:-
|
— | |
|
Amazon Linux 2
Amazon
|
cpe:/o:amazon:linux_2:-
|
— | |
|
Siemens SIMATIC S7 1500 CPU
Siemens / SIMATIC S7
|
cpe:/h:siemens:simatic_s7:1500_cpu
|
1500 CPU | |
|
Oracle Linux
Oracle
|
cpe:/o:oracle:linux:-
|
— | |
|
Google Container-Optimized OS
Google
|
cpe:/o:google:container-optimized_os:-
|
— | |
|
RESF Rocky Linux
RESF
|
cpe:/o:resf:rocky_linux:-
|
— |
| URL | Category |
|---|---|
| https://wid.cert-bund.de/.well-known/csaf/white/2… | self |
| https://wid.cert-bund.de/portal/wid/securityadvis… | self |
| https://lore.kernel.org/linux-cve-announce/ | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lore.kernel.org/linux-cve-announce/202604… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://docs.cloud.google.com/container-optimized… | external |
| https://access.redhat.com/errata/RHSA-2026:13932 | external |
| https://access.redhat.com/errata/RHSA-2026:14339 | external |
| https://access.redhat.com/errata/RHSA-2026:15883 | external |
| https://linux.oracle.com/errata/ELSA-2026-50261.html | external |
| https://linux.oracle.com/errata/ELSA-2026-50260.html | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://access.redhat.com/errata/RHSA-2026:19521 | external |
| https://ubuntu.com/security/notices/USN-8279-1 | external |
| https://ubuntu.com/security/notices/USN-8277-1 | external |
| https://ubuntu.com/security/notices/USN-8278-1 | external |
| https://ubuntu.com/security/notices/USN-8281-1 | external |
| https://access.redhat.com/errata/RHSA-2026:19568 | external |
| https://access.redhat.com/errata/RHSA-2026:19705 | external |
| https://ubuntu.com/security/notices/USN-8289-1 | external |
| https://access.redhat.com/errata/RHSA-2026:19875 | external |
| https://access.redhat.com/errata/RHSA-2026:19711 | external |
| https://access.redhat.com/errata/RHSA-2026:20130 | external |
| https://ubuntu.com/security/notices/USN-8278-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8280-2 | external |
| https://ubuntu.com/security/notices/USN-8280-3 | external |
| https://ubuntu.com/security/notices/USN-8305-1 | external |
| https://ubuntu.com/security/notices/USN-8305-2 | external |
| https://ubuntu.com/security/notices/USN-8280-1 | external |
| https://ubuntu.com/security/notices/USN-8310-1 | external |
| https://docs.cloud.google.com/container-optimized… | external |
| https://docs.cloud.google.com/container-optimized… | external |
| https://access.redhat.com/errata/RHSA-2026:21706 | external |
| https://access.redhat.com/errata/RHSA-2026:21745 | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-21706.html | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2026:21706 | external |
| https://errata.build.resf.org/RLSA-2026:21745 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8361-1 | external |
| https://ubuntu.com/security/notices/USN-8351-1 | external |
| https://ubuntu.com/security/notices/USN-8350-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8374-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| http://linux.oracle.com/errata/ELSA-2026-50293.html | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:25095 | external |
| https://access.redhat.com/errata/RHSA-2026:25028 | external |
| https://access.redhat.com/errata/RHSA-2026:25217 | external |
| https://access.redhat.com/errata/RHSA-2026:25191 | external |
| https://access.redhat.com/errata/RHSA-2026:25218 | external |
| https://ubuntu.com/security/notices/USN-8426-1 | external |
| https://errata.build.resf.org/RLSA-2026:25191 | external |
| https://access.redhat.com/errata/RHSA-2026:25533 | external |
| https://errata.build.resf.org/RLSA-2026:25217 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RXSA-2026:25217 | external |
| https://linux.oracle.com/errata/ELSA-2026-50318.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8361-2 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-50319.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://access.redhat.com/errata/RHSA-2026:27789 | external |
| https://access.redhat.com/errata/RHSA-2026:27354 | external |
| https://access.redhat.com/errata/RHSA-2026:27288 | external |
| https://access.redhat.com/errata/RHSA-2026:27288 | external |
| https://errata.build.resf.org/RLSA-2026:27354 | external |
| https://access.redhat.com/errata/RHSA-2026:27353 | external |
| https://lists.debian.org/debian-security-announce… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.opensuse.org/archives/list/security… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://errata.build.resf.org/RLSA-2026:27789 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| http://linux.oracle.com/errata/ELSA-2026-27789.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://linux.oracle.com/errata/ELSA-2026-25217.html | external |
| https://linux.oracle.com/errata/ELSA-2026-24381.html | external |
| https://linux.oracle.com/errata/ELSA-2026-18587.html | external |
| https://linux.oracle.com/errata/ELSA-2026-21556.html | external |
| https://linux.oracle.com/errata/ELSA-2026-19568.html | external |
| https://ubuntu.com/security/notices/USN-8492-1 | external |
| https://ubuntu.com/security/notices/USN-8488-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8493-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8490-1 | external |
| https://ubuntu.com/security/notices/USN-8491-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8492-2 | external |
| https://ubuntu.com/security/notices/USN-8498-1 | external |
| https://ubuntu.com/security/notices/USN-8497-1 | external |
| https://ubuntu.com/security/notices/USN-8499-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8508-1 | external |
| https://ubuntu.com/security/notices/USN-8507-1 | external |
| https://ubuntu.com/security/notices/USN-8492-3 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| http://linux.oracle.com/errata/ELSA-2026-50372.html | external |
| http://linux.oracle.com/errata/ELSA-2026-50374.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-… | external |
| https://linux.oracle.com/errata/ELSA-2026-30848.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8492-5 | external |
| https://ubuntu.com/security/notices/USN-8528-1 | external |
| https://ubuntu.com/security/notices/USN-8527-1 | external |
| https://linux.oracle.com/errata/ELSA-2026-50387.html | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://cert-portal.siemens.com/productcert/html/… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8545-1 | external |
| https://ubuntu.com/security/notices/USN-8546-1 | external |
| https://ubuntu.com/security/notices/USN-8547-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.debian.org/debian-lts-announce/2026… | external |
| https://access.redhat.com/errata/RHSA-2026:41236 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://ubuntu.com/security/notices/USN-8570-1 | external |
| https://ubuntu.com/security/notices/USN-8569-1 | external |
| https://ubuntu.com/security/notices/USN-8567-1 | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| https://lists.suse.com/pipermail/sle-security-upd… | external |
| http://linux.oracle.com/errata/ELSA-2026-25191.html | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-… | external |
| https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-… | external |
| https://ubuntu.com/security/notices/USN-8575-1 | external |
| https://ubuntu.com/security/notices/USN-8574-1 | external |
| https://ubuntu.com/security/notices/USN-8576-1 | external |
| https://access.redhat.com/errata/RHSA-2026:42919 | external |
| https://access.redhat.com/errata/RHSA-2026:43231 | external |
{
"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 Angreifer kann mehrere Schwachstellen im Linux Kernel ausnutzen, um einen Denial of Service Angriff durchzuf\u00fchren, Sicherheitsma\u00dfnahmen zu umgehen, Informationen offenzulegen, andere nicht n\u00e4her spezifizierte Auswirkungen zu verursachen und m\u00f6glicherweise Code auszuf\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-2026-1252 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-1252.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-1252 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-1252"
},
{
"category": "external",
"summary": "Kernel CVE Announce Mailingliste",
"url": "https://lore.kernel.org/linux-cve-announce/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31434",
"url": "https://lore.kernel.org/linux-cve-announce/2026042240-CVE-2026-31434-87f3@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31435",
"url": "https://lore.kernel.org/linux-cve-announce/2026042242-CVE-2026-31435-f0f5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31436",
"url": "https://lore.kernel.org/linux-cve-announce/2026042242-CVE-2026-31436-7ac7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31437",
"url": "https://lore.kernel.org/linux-cve-announce/2026042243-CVE-2026-31437-7cba@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31438",
"url": "https://lore.kernel.org/linux-cve-announce/2026042243-CVE-2026-31438-66c2@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31439",
"url": "https://lore.kernel.org/linux-cve-announce/2026042243-CVE-2026-31439-b890@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31440",
"url": "https://lore.kernel.org/linux-cve-announce/2026042244-CVE-2026-31440-78bd@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31441",
"url": "https://lore.kernel.org/linux-cve-announce/2026042244-CVE-2026-31441-eb92@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31442",
"url": "https://lore.kernel.org/linux-cve-announce/2026042244-CVE-2026-31442-dece@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31443",
"url": "https://lore.kernel.org/linux-cve-announce/2026042245-CVE-2026-31443-0b7d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31444",
"url": "https://lore.kernel.org/linux-cve-announce/2026042245-CVE-2026-31444-8b6e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31445",
"url": "https://lore.kernel.org/linux-cve-announce/2026042246-CVE-2026-31445-cbbf@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31446",
"url": "https://lore.kernel.org/linux-cve-announce/2026042246-CVE-2026-31446-8993@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31447",
"url": "https://lore.kernel.org/linux-cve-announce/2026042246-CVE-2026-31447-ed33@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31448",
"url": "https://lore.kernel.org/linux-cve-announce/2026042247-CVE-2026-31448-3c50@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31449",
"url": "https://lore.kernel.org/linux-cve-announce/2026042247-CVE-2026-31449-0942@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31450",
"url": "https://lore.kernel.org/linux-cve-announce/2026042247-CVE-2026-31450-19fa@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31451",
"url": "https://lore.kernel.org/linux-cve-announce/2026042248-CVE-2026-31451-cec9@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31452",
"url": "https://lore.kernel.org/linux-cve-announce/2026042248-CVE-2026-31452-9f5b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31453",
"url": "https://lore.kernel.org/linux-cve-announce/2026042248-CVE-2026-31453-6c3f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31454",
"url": "https://lore.kernel.org/linux-cve-announce/2026042249-CVE-2026-31454-ae01@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31455",
"url": "https://lore.kernel.org/linux-cve-announce/2026042249-CVE-2026-31455-1c26@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31456",
"url": "https://lore.kernel.org/linux-cve-announce/2026042249-CVE-2026-31456-3db6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31457",
"url": "https://lore.kernel.org/linux-cve-announce/2026042250-CVE-2026-31457-601a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31458",
"url": "https://lore.kernel.org/linux-cve-announce/2026042250-CVE-2026-31458-5a8e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31459",
"url": "https://lore.kernel.org/linux-cve-announce/2026042250-CVE-2026-31459-0600@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31460",
"url": "https://lore.kernel.org/linux-cve-announce/2026042251-CVE-2026-31460-2405@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31461",
"url": "https://lore.kernel.org/linux-cve-announce/2026042251-CVE-2026-31461-2b9c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31462",
"url": "https://lore.kernel.org/linux-cve-announce/2026042251-CVE-2026-31462-d050@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31463",
"url": "https://lore.kernel.org/linux-cve-announce/2026042252-CVE-2026-31463-7bc8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31464",
"url": "https://lore.kernel.org/linux-cve-announce/2026042252-CVE-2026-31464-f9c5@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31465",
"url": "https://lore.kernel.org/linux-cve-announce/2026042252-CVE-2026-31465-66a4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31466",
"url": "https://lore.kernel.org/linux-cve-announce/2026042253-CVE-2026-31466-4fba@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31467",
"url": "https://lore.kernel.org/linux-cve-announce/2026042253-CVE-2026-31467-914b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31468",
"url": "https://lore.kernel.org/linux-cve-announce/2026042253-CVE-2026-31468-13b8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31469",
"url": "https://lore.kernel.org/linux-cve-announce/2026042254-CVE-2026-31469-65d8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31470",
"url": "https://lore.kernel.org/linux-cve-announce/2026042254-CVE-2026-31470-350c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31471",
"url": "https://lore.kernel.org/linux-cve-announce/2026042254-CVE-2026-31471-d8ba@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31472",
"url": "https://lore.kernel.org/linux-cve-announce/2026042255-CVE-2026-31472-396d@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31473",
"url": "https://lore.kernel.org/linux-cve-announce/2026042255-CVE-2026-31473-fad0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31474",
"url": "https://lore.kernel.org/linux-cve-announce/2026042256-CVE-2026-31474-8673@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31475",
"url": "https://lore.kernel.org/linux-cve-announce/2026042256-CVE-2026-31475-74ed@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31476",
"url": "https://lore.kernel.org/linux-cve-announce/2026042256-CVE-2026-31476-bb58@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31477",
"url": "https://lore.kernel.org/linux-cve-announce/2026042257-CVE-2026-31477-2808@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31478",
"url": "https://lore.kernel.org/linux-cve-announce/2026042257-CVE-2026-31478-7be0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31479",
"url": "https://lore.kernel.org/linux-cve-announce/2026042257-CVE-2026-31479-3a31@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31480",
"url": "https://lore.kernel.org/linux-cve-announce/2026042258-CVE-2026-31480-c2bf@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31481",
"url": "https://lore.kernel.org/linux-cve-announce/2026042258-CVE-2026-31481-390e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31482",
"url": "https://lore.kernel.org/linux-cve-announce/2026042258-CVE-2026-31482-b482@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31483",
"url": "https://lore.kernel.org/linux-cve-announce/2026042259-CVE-2026-31483-9bc8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31484",
"url": "https://lore.kernel.org/linux-cve-announce/2026042259-CVE-2026-31484-3268@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31485",
"url": "https://lore.kernel.org/linux-cve-announce/2026042259-CVE-2026-31485-e15c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31486",
"url": "https://lore.kernel.org/linux-cve-announce/2026042200-CVE-2026-31486-52d4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31487",
"url": "https://lore.kernel.org/linux-cve-announce/2026042200-CVE-2026-31487-a0ca@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31488",
"url": "https://lore.kernel.org/linux-cve-announce/2026042200-CVE-2026-31488-fe04@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31489",
"url": "https://lore.kernel.org/linux-cve-announce/2026042201-CVE-2026-31489-3a01@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31490",
"url": "https://lore.kernel.org/linux-cve-announce/2026042201-CVE-2026-31490-8635@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31491",
"url": "https://lore.kernel.org/linux-cve-announce/2026042201-CVE-2026-31491-e599@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31492",
"url": "https://lore.kernel.org/linux-cve-announce/2026042202-CVE-2026-31492-2f6c@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31493",
"url": "https://lore.kernel.org/linux-cve-announce/2026042202-CVE-2026-31493-4d67@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31494",
"url": "https://lore.kernel.org/linux-cve-announce/2026042202-CVE-2026-31494-647e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31495",
"url": "https://lore.kernel.org/linux-cve-announce/2026042203-CVE-2026-31495-f86b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31496",
"url": "https://lore.kernel.org/linux-cve-announce/2026042203-CVE-2026-31496-e130@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31497",
"url": "https://lore.kernel.org/linux-cve-announce/2026042203-CVE-2026-31497-f54a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31498",
"url": "https://lore.kernel.org/linux-cve-announce/2026042204-CVE-2026-31498-1aee@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31499",
"url": "https://lore.kernel.org/linux-cve-announce/2026042204-CVE-2026-31499-0142@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31500",
"url": "https://lore.kernel.org/linux-cve-announce/2026042204-CVE-2026-31500-c032@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31501",
"url": "https://lore.kernel.org/linux-cve-announce/2026042205-CVE-2026-31501-113b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31502",
"url": "https://lore.kernel.org/linux-cve-announce/2026042205-CVE-2026-31502-4b98@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31503",
"url": "https://lore.kernel.org/linux-cve-announce/2026042206-CVE-2026-31503-602a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31504",
"url": "https://lore.kernel.org/linux-cve-announce/2026042206-CVE-2026-31504-10f4@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31505",
"url": "https://lore.kernel.org/linux-cve-announce/2026042206-CVE-2026-31505-a1db@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31506",
"url": "https://lore.kernel.org/linux-cve-announce/2026042207-CVE-2026-31506-31d7@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31507",
"url": "https://lore.kernel.org/linux-cve-announce/2026042207-CVE-2026-31507-cbc0@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31508",
"url": "https://lore.kernel.org/linux-cve-announce/2026042207-CVE-2026-31508-4def@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31509",
"url": "https://lore.kernel.org/linux-cve-announce/2026042208-CVE-2026-31509-8609@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31510",
"url": "https://lore.kernel.org/linux-cve-announce/2026042208-CVE-2026-31510-1c90@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31511",
"url": "https://lore.kernel.org/linux-cve-announce/2026042208-CVE-2026-31511-b569@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31512",
"url": "https://lore.kernel.org/linux-cve-announce/2026042209-CVE-2026-31512-b386@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31513",
"url": "https://lore.kernel.org/linux-cve-announce/2026042209-CVE-2026-31513-a32a@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31514",
"url": "https://lore.kernel.org/linux-cve-announce/2026042209-CVE-2026-31514-510b@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31515",
"url": "https://lore.kernel.org/linux-cve-announce/2026042210-CVE-2026-31515-d929@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31516",
"url": "https://lore.kernel.org/linux-cve-announce/2026042210-CVE-2026-31516-59d8@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31517",
"url": "https://lore.kernel.org/linux-cve-announce/2026042210-CVE-2026-31517-e189@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31518",
"url": "https://lore.kernel.org/linux-cve-announce/2026042211-CVE-2026-31518-ba84@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31519",
"url": "https://lore.kernel.org/linux-cve-announce/2026042211-CVE-2026-31519-fdd6@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31520",
"url": "https://lore.kernel.org/linux-cve-announce/2026042211-CVE-2026-31520-a81f@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31521",
"url": "https://lore.kernel.org/linux-cve-announce/2026042212-CVE-2026-31521-b61e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31522",
"url": "https://lore.kernel.org/linux-cve-announce/2026042212-CVE-2026-31522-b576@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31523",
"url": "https://lore.kernel.org/linux-cve-announce/2026042212-CVE-2026-31523-1f48@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31524",
"url": "https://lore.kernel.org/linux-cve-announce/2026042213-CVE-2026-31524-3f28@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31525",
"url": "https://lore.kernel.org/linux-cve-announce/2026042213-CVE-2026-31525-0fff@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31526",
"url": "https://lore.kernel.org/linux-cve-announce/2026042213-CVE-2026-31526-9771@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31527",
"url": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31527-a1bc@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31528",
"url": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31528-b375@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31529",
"url": "https://lore.kernel.org/linux-cve-announce/2026042214-CVE-2026-31529-f32e@gregkh/"
},
{
"category": "external",
"summary": "Linux Kernel CVE Announcement CVE-2026-31530",
"url": "https://lore.kernel.org/linux-cve-announce/2026042215-CVE-2026-31530-b6f5@gregkh/"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4561 vom 2026-05-02",
"url": "https://lists.debian.org/debian-lts-announce/2026/05/msg00005.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6238 vom 2026-05-04",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00148.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6243 vom 2026-05-04",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00154.html"
},
{
"category": "external",
"summary": "Container-Optimized OS release notes vom 2026-05-02",
"url": "https://docs.cloud.google.com/container-optimized-os/docs/release-notes#May_01_2026"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:13932 vom 2026-05-06",
"url": "https://access.redhat.com/errata/RHSA-2026:13932"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:14339 vom 2026-05-06",
"url": "https://access.redhat.com/errata/RHSA-2026:14339"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:15883 vom 2026-05-11",
"url": "https://access.redhat.com/errata/RHSA-2026:15883"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50261 vom 2026-05-12",
"url": "https://linux.oracle.com/errata/ELSA-2026-50261.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50260 vom 2026-05-12",
"url": "https://linux.oracle.com/errata/ELSA-2026-50260.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6274 vom 2026-05-18",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00185.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:19521 vom 2026-05-20",
"url": "https://access.redhat.com/errata/RHSA-2026:19521"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8279-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8279-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8277-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8277-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8278-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8278-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8281-1 vom 2026-05-20",
"url": "https://ubuntu.com/security/notices/USN-8281-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:19568 vom 2026-05-21",
"url": "https://access.redhat.com/errata/RHSA-2026:19568"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:19705 vom 2026-05-20",
"url": "https://access.redhat.com/errata/RHSA-2026:19705"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8289-1 vom 2026-05-21",
"url": "https://ubuntu.com/security/notices/USN-8289-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:19875 vom 2026-05-21",
"url": "https://access.redhat.com/errata/RHSA-2026:19875"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:19711 vom 2026-05-20",
"url": "https://access.redhat.com/errata/RHSA-2026:19711"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:20130 vom 2026-05-21",
"url": "https://access.redhat.com/errata/RHSA-2026:20130"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8278-2 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8278-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2068-1 vom 2026-05-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026278.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8280-2 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8280-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8280-3 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8280-3"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8305-1 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8305-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8305-2 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8305-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8280-1 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8280-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8310-1 vom 2026-05-26",
"url": "https://ubuntu.com/security/notices/USN-8310-1"
},
{
"category": "external",
"summary": "Container-Optimized OS release notes vom 2026-05-26",
"url": "https://docs.cloud.google.com/container-optimized-os/docs/release-notes#May_01_2026"
},
{
"category": "external",
"summary": "Container-Optimized OS release notes vom 2026-05-27",
"url": "https://docs.cloud.google.com/container-optimized-os/docs/release-notes#May_26_2026"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:21706 vom 2026-05-28",
"url": "https://access.redhat.com/errata/RHSA-2026:21706"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:21745 vom 2026-05-28",
"url": "https://access.redhat.com/errata/RHSA-2026:21745"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20826-1 vom 2026-05-29",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/7D6UU5UPSRF74AUKK2CVVWC3NKU2VIUP/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21841-1 vom 2026-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026384.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2111-1 vom 2026-05-30",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026397.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-21706 vom 2026-05-29",
"url": "https://linux.oracle.com/errata/ELSA-2026-21706.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4606 vom 2026-05-29",
"url": "https://lists.debian.org/debian-lts-announce/2026/05/msg00051.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21834-1 vom 2026-05-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-May/026381.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:21706 vom 2026-05-31",
"url": "https://errata.build.resf.org/RLSA-2026:21706"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:21745 vom 2026-05-31",
"url": "https://errata.build.resf.org/RLSA-2026:21745"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21860-1 vom 2026-06-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026426.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21845-1 vom 2026-06-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026437.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2195-1 vom 2026-06-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026416.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8361-1 vom 2026-06-02",
"url": "https://ubuntu.com/security/notices/USN-8361-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8351-1 vom 2026-06-01",
"url": "https://ubuntu.com/security/notices/USN-8351-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8350-1 vom 2026-06-01",
"url": "https://ubuntu.com/security/notices/USN-8350-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2202-1 vom 2026-06-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026424.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21916-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026478.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21866-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026524.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21919-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026475.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2216-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026444.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21868-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026522.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2217-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026441.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2215-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026445.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8374-1 vom 2026-06-02",
"url": "https://ubuntu.com/security/notices/USN-8374-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21876-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026515.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21947-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026447.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:21877-1 vom 2026-06-02",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026514.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2238-1 vom 2026-06-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026559.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50293 vom 2026-06-04",
"url": "http://linux.oracle.com/errata/ELSA-2026-50293.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20912-1 vom 2026-06-08",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/FZM3URQQWLAAXA44ZXVWIGRPJ3OVLFFC/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22043-1 vom 2026-06-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026665.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22048-1 vom 2026-06-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026660.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2310-1 vom 2026-06-09",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026651.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25095 vom 2026-06-10",
"url": "https://access.redhat.com/errata/RHSA-2026:25095"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25028 vom 2026-06-10",
"url": "https://access.redhat.com/errata/RHSA-2026:25028"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25217 vom 2026-06-11",
"url": "https://access.redhat.com/errata/RHSA-2026:25217"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25191 vom 2026-06-11",
"url": "https://access.redhat.com/errata/RHSA-2026:25191"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25218 vom 2026-06-11",
"url": "https://access.redhat.com/errata/RHSA-2026:25218"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8426-1 vom 2026-06-12",
"url": "https://ubuntu.com/security/notices/USN-8426-1"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:25191 vom 2026-06-13",
"url": "https://errata.build.resf.org/RLSA-2026:25191"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:25533 vom 2026-06-13",
"url": "https://access.redhat.com/errata/RHSA-2026:25533"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:25217 vom 2026-06-13",
"url": "https://errata.build.resf.org/RLSA-2026:25217"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22087-1 vom 2026-06-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026746.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22076-1 vom 2026-06-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026754.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RXSA-2026:25217 vom 2026-06-15",
"url": "https://errata.build.resf.org/RXSA-2026:25217"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50318 vom 2026-06-16",
"url": "https://linux.oracle.com/errata/ELSA-2026-50318.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22112-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026783.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22108-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026784.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22117-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026781.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22100-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026790.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22099-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026791.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22127-1 vom 2026-06-16",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026776.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8361-2 vom 2026-06-17",
"url": "https://ubuntu.com/security/notices/USN-8361-2"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22140-1 vom 2026-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026804.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22137-1 vom 2026-06-17",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026807.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50319 vom 2026-06-18",
"url": "https://linux.oracle.com/errata/ELSA-2026-50319.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2450-1 vom 2026-06-18",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026829.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:27789 vom 2026-06-22",
"url": "https://access.redhat.com/errata/RHSA-2026:27789"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:27354 vom 2026-06-19",
"url": "https://access.redhat.com/errata/RHSA-2026:27354"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:27288 vom 2026-06-19",
"url": "https://access.redhat.com/errata/RHSA-2026:27288"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:27288 vom 2026-06-20",
"url": "https://access.redhat.com/errata/RHSA-2026:27288"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:27354 vom 2026-06-22",
"url": "https://errata.build.resf.org/RLSA-2026:27354"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:27353 vom 2026-06-19",
"url": "https://access.redhat.com/errata/RHSA-2026:27353"
},
{
"category": "external",
"summary": "Debian Security Advisory DSA-6355 vom 2026-06-22",
"url": "https://lists.debian.org/debian-security-announce/2026/msg00266.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2496-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026868.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2500-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026867.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2494-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026869.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2571-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026954.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2518-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026870.html"
},
{
"category": "external",
"summary": "openSUSE Security Update OPENSUSE-SU-2026:20965-1 vom 2026-06-23",
"url": "https://lists.opensuse.org/archives/list/security-announce@lists.opensuse.org/thread/EBEPI66NBU2PRJRDQFZ674MJNRDDMJUE/"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2511-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026871.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2588-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026953.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2591-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026952.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2520-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026872.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2503-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026874.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2559-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026938.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2567-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026939.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2532-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026940.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2549-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026942.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2594-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026950.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2592-1 vom 2026-06-23",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026951.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2603-1 vom 2026-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026971.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2601-1 vom 2026-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026970.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2607-1 vom 2026-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026973.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2610-1 vom 2026-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026974.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2608-1 vom 2026-06-24",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026972.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2630-1 vom 2026-06-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027000.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2631-1 vom 2026-06-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/026999.html"
},
{
"category": "external",
"summary": "Rocky Linux Security Advisory RLSA-2026:27789 vom 2026-06-25",
"url": "https://errata.build.resf.org/RLSA-2026:27789"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2632-1 vom 2026-06-25",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2658-1 vom 2026-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027023.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2638-1 vom 2026-06-26",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027011.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-27789 vom 2026-06-27",
"url": "http://linux.oracle.com/errata/ELSA-2026-27789.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22288-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027037.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22281-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027043.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22276-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027048.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22283-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027041.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22282-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027042.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22277-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027047.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22280-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027044.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22278-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027046.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22279-1 vom 2026-06-29",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-June/027045.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-25217 vom 2026-06-30",
"url": "https://linux.oracle.com/errata/ELSA-2026-25217.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-24381 vom 2026-06-30",
"url": "https://linux.oracle.com/errata/ELSA-2026-24381.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-18587 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-18587.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-21556 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-21556.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-19568 vom 2026-07-01",
"url": "https://linux.oracle.com/errata/ELSA-2026-19568.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8492-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8492-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8488-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8488-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22389-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027102.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22388-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027103.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8493-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8493-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2722-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027161.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22391-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027100.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22387-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027104.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22386-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027105.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8490-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8490-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8491-1 vom 2026-07-01",
"url": "https://ubuntu.com/security/notices/USN-8491-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22390-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027101.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22385-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027106.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22384-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027107.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22383-1 vom 2026-07-01",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027108.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8492-2 vom 2026-07-02",
"url": "https://ubuntu.com/security/notices/USN-8492-2"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8498-1 vom 2026-07-02",
"url": "https://ubuntu.com/security/notices/USN-8498-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8497-1 vom 2026-07-02",
"url": "https://ubuntu.com/security/notices/USN-8497-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8499-1 vom 2026-07-02",
"url": "https://ubuntu.com/security/notices/USN-8499-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22425-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027180.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22436-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027171.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22426-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027179.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22419-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027185.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22427-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027178.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22418-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027186.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22433-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027172.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22428-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027177.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22420-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027184.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22421-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027183.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22407-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027197.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22406-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027198.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22416-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027188.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22405-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027199.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22404-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027200.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22417-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027187.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22394-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027210.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22396-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027208.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22397-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027207.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22393-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027211.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22403-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027201.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22398-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027206.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22399-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027205.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22400-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027204.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22402-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027202.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22401-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027203.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22411-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027193.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22412-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027192.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22413-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027191.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22410-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027194.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22409-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027195.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22414-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027190.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22408-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027196.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22415-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027189.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22460-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027249.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22458-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027251.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22480-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027230.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22484-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027226.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22483-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027227.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22470-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027239.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22461-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027248.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22462-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027247.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22482-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027228.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22481-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027229.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4665 vom 2026-07-03",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00006.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22466-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027243.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22485-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027225.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22486-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027224.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22487-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027223.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22488-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027222.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22489-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027221.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22490-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027220.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22491-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027219.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4671 vom 2026-07-05",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00012.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22471-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027238.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22472-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027237.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22468-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027241.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22467-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027242.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22473-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027236.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22463-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027246.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22474-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027235.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22464-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027245.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22475-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027234.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22476-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027233.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22478-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027232.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22469-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027240.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22479-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027231.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4664 vom 2026-07-03",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00005.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22465-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027244.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22440-1 vom 2026-07-03",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027266.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8508-1 vom 2026-07-06",
"url": "https://ubuntu.com/security/notices/USN-8508-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8507-1 vom 2026-07-06",
"url": "https://ubuntu.com/security/notices/USN-8507-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8492-3 vom 2026-07-06",
"url": "https://ubuntu.com/security/notices/USN-8492-3"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22507-1 vom 2026-07-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027295.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50372 vom 2026-07-07",
"url": "http://linux.oracle.com/errata/ELSA-2026-50372.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50374 vom 2026-07-07",
"url": "http://linux.oracle.com/errata/ELSA-2026-50374.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22508-1 vom 2026-07-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027294.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22509-1 vom 2026-07-06",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027293.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.10-2026-124 vom 2026-07-08",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-2026-124.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-30848 vom 2026-07-08",
"url": "https://linux.oracle.com/errata/ELSA-2026-30848.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2800-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027327.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22511-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027317.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22512-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027316.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22522-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027308.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2799-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027328.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22521-1 vom 2026-07-08",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027309.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8492-5 vom 2026-07-10",
"url": "https://ubuntu.com/security/notices/USN-8492-5"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8528-1 vom 2026-07-10",
"url": "https://ubuntu.com/security/notices/USN-8528-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8527-1 vom 2026-07-10",
"url": "https://ubuntu.com/security/notices/USN-8527-1"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-50387 vom 2026-07-10",
"url": "https://linux.oracle.com/errata/ELSA-2026-50387.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2857-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027384.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2855-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027386.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2858-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027385.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2890-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027407.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2894-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027403.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2868-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027390.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2914-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027416.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2902-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027420.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2895-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027402.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2887-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027406.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2866-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027392.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2899-1 vom 2026-07-13",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027419.html"
},
{
"category": "external",
"summary": "Siemens Security Advisory SSA-019113 vom 2026-07-14",
"url": "https://cert-portal.siemens.com/productcert/html/ssa-019113.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2933-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027421.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2930-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027424.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2945-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027431.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2961-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027453.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2956-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027455.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2943-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027432.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2938-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027433.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:2957-1 vom 2026-07-14",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027454.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8545-1 vom 2026-07-15",
"url": "https://ubuntu.com/security/notices/USN-8545-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8546-1 vom 2026-07-15",
"url": "https://ubuntu.com/security/notices/USN-8546-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8547-1 vom 2026-07-15",
"url": "https://ubuntu.com/security/notices/USN-8547-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22598-1 vom 2026-07-15",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027496.html"
},
{
"category": "external",
"summary": "Debian Security Advisory DLA-4688 vom 2026-07-18",
"url": "https://lists.debian.org/debian-lts-announce/2026/07/msg00030.html"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:41236 vom 2026-07-17",
"url": "https://access.redhat.com/errata/RHSA-2026:41236"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22665-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027660.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:3130-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027664.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22666-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027659.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22699-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027628.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8570-1 vom 2026-07-20",
"url": "https://ubuntu.com/security/notices/USN-8570-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8569-1 vom 2026-07-20",
"url": "https://ubuntu.com/security/notices/USN-8569-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8567-1 vom 2026-07-20",
"url": "https://ubuntu.com/security/notices/USN-8567-1"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22673-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027654.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22674-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027653.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22675-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027652.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22676-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027651.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22677-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027650.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22678-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027649.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22680-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027647.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22681-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027646.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22682-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027645.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22683-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027644.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22684-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027643.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22685-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027642.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22686-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027641.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22687-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027640.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22689-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027638.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22690-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027637.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22691-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027636.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22692-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027635.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22693-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027634.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22694-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027633.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22695-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027632.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22696-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027631.html"
},
{
"category": "external",
"summary": "SUSE Security Update SUSE-SU-2026:22697-1 vom 2026-07-20",
"url": "https://lists.suse.com/pipermail/sle-security-updates/2026-July/027630.html"
},
{
"category": "external",
"summary": "Oracle Linux Security Advisory ELSA-2026-25191 vom 2026-07-20",
"url": "http://linux.oracle.com/errata/ELSA-2026-25191.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.15-2026-110 vom 2026-07-20",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.15-2026-110.html"
},
{
"category": "external",
"summary": "Amazon Linux Security Advisory ALAS2KERNEL-5.10-2026-126 vom 2026-07-20",
"url": "https://alas.aws.amazon.com/AL2/ALAS2KERNEL-5.10-2026-126.html"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8575-1 vom 2026-07-21",
"url": "https://ubuntu.com/security/notices/USN-8575-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8574-1 vom 2026-07-21",
"url": "https://ubuntu.com/security/notices/USN-8574-1"
},
{
"category": "external",
"summary": "Ubuntu Security Notice USN-8576-1 vom 2026-07-21",
"url": "https://ubuntu.com/security/notices/USN-8576-1"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:42919 vom 2026-07-21",
"url": "https://access.redhat.com/errata/RHSA-2026:42919"
},
{
"category": "external",
"summary": "Red Hat Security Advisory RHSA-2026:43231 vom 2026-07-22",
"url": "https://access.redhat.com/errata/RHSA-2026:43231"
}
],
"source_lang": "en-US",
"title": "Linux Kernel: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-07-21T22:00:00.000+00:00",
"generator": {
"date": "2026-07-22T09:21:10.989+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.6.0"
}
},
"id": "WID-SEC-W-2026-1252",
"initial_release_date": "2026-04-22T22:00:00.000+00:00",
"revision_history": [
{
"date": "2026-04-22T22:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-04-23T22:00:00.000+00:00",
"number": "2",
"summary": "Referenz(en) aufgenommen: EUVD-2026-25218, EUVD-2026-25219"
},
{
"date": "2026-05-03T22:00:00.000+00:00",
"number": "3",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2026-05-05T22:00:00.000+00:00",
"number": "4",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-05-06T22:00:00.000+00:00",
"number": "5",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-05-10T22:00:00.000+00:00",
"number": "6",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-05-12T22:00:00.000+00:00",
"number": "7",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-05-17T22:00:00.000+00:00",
"number": "8",
"summary": "Neue Updates von Debian aufgenommen"
},
{
"date": "2026-05-19T22:00:00.000+00:00",
"number": "9",
"summary": "Neue Updates von Red Hat und Ubuntu aufgenommen"
},
{
"date": "2026-05-20T22:00:00.000+00:00",
"number": "10",
"summary": "Neue Updates von Red Hat und Ubuntu aufgenommen"
},
{
"date": "2026-05-21T22:00:00.000+00:00",
"number": "11",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-05-26T22:00:00.000+00:00",
"number": "12",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-05-27T22:00:00.000+00:00",
"number": "13",
"summary": "Neue Updates aufgenommen"
},
{
"date": "2026-05-28T22:00:00.000+00:00",
"number": "14",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-05-31T22:00:00.000+00:00",
"number": "15",
"summary": "Neue Updates von openSUSE, SUSE, Oracle Linux, Debian und Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-06-01T22:00:00.000+00:00",
"number": "16",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2026-06-02T22:00:00.000+00:00",
"number": "17",
"summary": "Neue Updates von SUSE und Ubuntu aufgenommen"
},
{
"date": "2026-06-04T22:00:00.000+00:00",
"number": "18",
"summary": "Neue Updates von SUSE und Oracle Linux aufgenommen"
},
{
"date": "2026-06-08T22:00:00.000+00:00",
"number": "19",
"summary": "Neue Updates von openSUSE aufgenommen"
},
{
"date": "2026-06-09T22:00:00.000+00:00",
"number": "20",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-10T22:00:00.000+00:00",
"number": "21",
"summary": "Neue Updates von Red Hat aufgenommen"
},
{
"date": "2026-06-11T22:00:00.000+00:00",
"number": "22",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-06-14T22:00:00.000+00:00",
"number": "23",
"summary": "Neue Updates von Rocky Enterprise Software Foundation und Red Hat aufgenommen"
},
{
"date": "2026-06-15T22:00:00.000+00:00",
"number": "24",
"summary": "Neue Updates von Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-06-16T22:00:00.000+00:00",
"number": "25",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-17T22:00:00.000+00:00",
"number": "26",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-18T22:00:00.000+00:00",
"number": "27",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-21T22:00:00.000+00:00",
"number": "28",
"summary": "Neue Updates von Red Hat, Rocky Enterprise Software Foundation und Debian aufgenommen"
},
{
"date": "2026-06-22T22:00:00.000+00:00",
"number": "29",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-23T22:00:00.000+00:00",
"number": "30",
"summary": "Neue Updates von SUSE und openSUSE aufgenommen"
},
{
"date": "2026-06-24T22:00:00.000+00:00",
"number": "31",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-25T22:00:00.000+00:00",
"number": "32",
"summary": "Neue Updates von SUSE und Rocky Enterprise Software Foundation aufgenommen"
},
{
"date": "2026-06-28T22:00:00.000+00:00",
"number": "33",
"summary": "Neue Updates von SUSE und Oracle Linux aufgenommen"
},
{
"date": "2026-06-29T22:00:00.000+00:00",
"number": "34",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-06-30T22:00:00.000+00:00",
"number": "35",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-07-01T22:00:00.000+00:00",
"number": "36",
"summary": "Neue Updates von Ubuntu und SUSE aufgenommen"
},
{
"date": "2026-07-02T22:00:00.000+00:00",
"number": "37",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-07-05T22:00:00.000+00:00",
"number": "38",
"summary": "Neue Updates von SUSE und Debian aufgenommen"
},
{
"date": "2026-07-06T22:00:00.000+00:00",
"number": "39",
"summary": "Neue Updates von SUSE und Oracle Linux aufgenommen"
},
{
"date": "2026-07-07T22:00:00.000+00:00",
"number": "40",
"summary": "Neue Updates von Amazon aufgenommen"
},
{
"date": "2026-07-08T22:00:00.000+00:00",
"number": "41",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-07-09T22:00:00.000+00:00",
"number": "42",
"summary": "Neue Updates von Ubuntu aufgenommen"
},
{
"date": "2026-07-12T22:00:00.000+00:00",
"number": "43",
"summary": "Neue Updates von Oracle Linux aufgenommen"
},
{
"date": "2026-07-13T22:00:00.000+00:00",
"number": "44",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-07-14T22:00:00.000+00:00",
"number": "45",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-07-15T22:00:00.000+00:00",
"number": "46",
"summary": "Neue Updates von SUSE aufgenommen"
},
{
"date": "2026-07-19T22:00:00.000+00:00",
"number": "47",
"summary": "Neue Updates von Debian und Red Hat aufgenommen"
},
{
"date": "2026-07-20T22:00:00.000+00:00",
"number": "48",
"summary": "Neue Updates von SUSE, Ubuntu, Oracle Linux und Amazon aufgenommen"
},
{
"date": "2026-07-21T22:00:00.000+00:00",
"number": "49",
"summary": "Neue Updates von Red Hat aufgenommen"
}
],
"status": "final",
"version": "49"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Amazon Linux 2",
"product": {
"name": "Amazon Linux 2",
"product_id": "398363",
"product_identification_helper": {
"cpe": "cpe:/o:amazon:linux_2:-"
}
}
}
],
"category": "vendor",
"name": "Amazon"
},
{
"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": "Google Container-Optimized OS",
"product": {
"name": "Google Container-Optimized OS",
"product_id": "1607324",
"product_identification_helper": {
"cpe": "cpe:/o:google:container-optimized_os:-"
}
}
}
],
"category": "vendor",
"name": "Google"
},
{
"branches": [
{
"category": "product_name",
"name": "Open Source Linux Kernel",
"product": {
"name": "Open Source Linux Kernel",
"product_id": "T053276",
"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": "RESF Rocky Linux",
"product": {
"name": "RESF Rocky Linux",
"product_id": "T032255",
"product_identification_helper": {
"cpe": "cpe:/o:resf:rocky_linux:-"
}
}
}
],
"category": "vendor",
"name": "RESF"
},
{
"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": "product_name",
"name": "SUSE openSUSE",
"product": {
"name": "SUSE openSUSE",
"product_id": "T027843",
"product_identification_helper": {
"cpe": "cpe:/o:suse:opensuse:-"
}
}
}
],
"category": "vendor",
"name": "SUSE"
},
{
"branches": [
{
"branches": [
{
"category": "product_version",
"name": "1500 CPU",
"product": {
"name": "Siemens SIMATIC S7 1500 CPU",
"product_id": "T053842",
"product_identification_helper": {
"cpe": "cpe:/h:siemens:simatic_s7:1500_cpu"
}
}
}
],
"category": "product_name",
"name": "SIMATIC S7"
}
],
"category": "vendor",
"name": "Siemens"
},
{
"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-2025-38617",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2025-38617"
},
{
"cve": "CVE-2026-31434",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31434"
},
{
"cve": "CVE-2026-31435",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31435"
},
{
"cve": "CVE-2026-31436",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31436"
},
{
"cve": "CVE-2026-31437",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31437"
},
{
"cve": "CVE-2026-31438",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31438"
},
{
"cve": "CVE-2026-31439",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31439"
},
{
"cve": "CVE-2026-31440",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31440"
},
{
"cve": "CVE-2026-31441",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31441"
},
{
"cve": "CVE-2026-31442",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31442"
},
{
"cve": "CVE-2026-31443",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31443"
},
{
"cve": "CVE-2026-31444",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31444"
},
{
"cve": "CVE-2026-31445",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31445"
},
{
"cve": "CVE-2026-31446",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31446"
},
{
"cve": "CVE-2026-31447",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31447"
},
{
"cve": "CVE-2026-31448",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31448"
},
{
"cve": "CVE-2026-31449",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31449"
},
{
"cve": "CVE-2026-31450",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31450"
},
{
"cve": "CVE-2026-31451",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31451"
},
{
"cve": "CVE-2026-31452",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31452"
},
{
"cve": "CVE-2026-31453",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31453"
},
{
"cve": "CVE-2026-31454",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31454"
},
{
"cve": "CVE-2026-31455",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31455"
},
{
"cve": "CVE-2026-31456",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31456"
},
{
"cve": "CVE-2026-31457",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31457"
},
{
"cve": "CVE-2026-31458",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31458"
},
{
"cve": "CVE-2026-31459",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31459"
},
{
"cve": "CVE-2026-31460",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31460"
},
{
"cve": "CVE-2026-31461",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31461"
},
{
"cve": "CVE-2026-31462",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31462"
},
{
"cve": "CVE-2026-31463",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31463"
},
{
"cve": "CVE-2026-31464",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31464"
},
{
"cve": "CVE-2026-31465",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31465"
},
{
"cve": "CVE-2026-31466",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31466"
},
{
"cve": "CVE-2026-31467",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31467"
},
{
"cve": "CVE-2026-31468",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31468"
},
{
"cve": "CVE-2026-31469",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31469"
},
{
"cve": "CVE-2026-31470",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31470"
},
{
"cve": "CVE-2026-31471",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31471"
},
{
"cve": "CVE-2026-31472",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31472"
},
{
"cve": "CVE-2026-31473",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31473"
},
{
"cve": "CVE-2026-31474",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31474"
},
{
"cve": "CVE-2026-31475",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31475"
},
{
"cve": "CVE-2026-31476",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31476"
},
{
"cve": "CVE-2026-31477",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31477"
},
{
"cve": "CVE-2026-31478",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31478"
},
{
"cve": "CVE-2026-31479",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31479"
},
{
"cve": "CVE-2026-31480",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31480"
},
{
"cve": "CVE-2026-31481",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31481"
},
{
"cve": "CVE-2026-31482",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31482"
},
{
"cve": "CVE-2026-31483",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31483"
},
{
"cve": "CVE-2026-31484",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31484"
},
{
"cve": "CVE-2026-31485",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31485"
},
{
"cve": "CVE-2026-31486",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31486"
},
{
"cve": "CVE-2026-31487",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31487"
},
{
"cve": "CVE-2026-31488",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31488"
},
{
"cve": "CVE-2026-31489",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31489"
},
{
"cve": "CVE-2026-31490",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31490"
},
{
"cve": "CVE-2026-31491",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31491"
},
{
"cve": "CVE-2026-31492",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31492"
},
{
"cve": "CVE-2026-31493",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31493"
},
{
"cve": "CVE-2026-31494",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31494"
},
{
"cve": "CVE-2026-31495",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31495"
},
{
"cve": "CVE-2026-31496",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31496"
},
{
"cve": "CVE-2026-31497",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31497"
},
{
"cve": "CVE-2026-31498",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31498"
},
{
"cve": "CVE-2026-31499",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31499"
},
{
"cve": "CVE-2026-31500",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31500"
},
{
"cve": "CVE-2026-31501",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31501"
},
{
"cve": "CVE-2026-31502",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31502"
},
{
"cve": "CVE-2026-31503",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31503"
},
{
"cve": "CVE-2026-31504",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31504"
},
{
"cve": "CVE-2026-31505",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31505"
},
{
"cve": "CVE-2026-31506",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31506"
},
{
"cve": "CVE-2026-31507",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31507"
},
{
"cve": "CVE-2026-31508",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31508"
},
{
"cve": "CVE-2026-31509",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31509"
},
{
"cve": "CVE-2026-31510",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31510"
},
{
"cve": "CVE-2026-31511",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31511"
},
{
"cve": "CVE-2026-31512",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31512"
},
{
"cve": "CVE-2026-31513",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31513"
},
{
"cve": "CVE-2026-31514",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31514"
},
{
"cve": "CVE-2026-31515",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31515"
},
{
"cve": "CVE-2026-31516",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31516"
},
{
"cve": "CVE-2026-31517",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31517"
},
{
"cve": "CVE-2026-31518",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31518"
},
{
"cve": "CVE-2026-31519",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31519"
},
{
"cve": "CVE-2026-31520",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31520"
},
{
"cve": "CVE-2026-31521",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31521"
},
{
"cve": "CVE-2026-31522",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31522"
},
{
"cve": "CVE-2026-31523",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31523"
},
{
"cve": "CVE-2026-31524",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31524"
},
{
"cve": "CVE-2026-31525",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31525"
},
{
"cve": "CVE-2026-31526",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31526"
},
{
"cve": "CVE-2026-31527",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31527"
},
{
"cve": "CVE-2026-31528",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31528"
},
{
"cve": "CVE-2026-31529",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31529"
},
{
"cve": "CVE-2026-31530",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31530"
},
{
"cve": "CVE-2026-31531",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31531"
},
{
"cve": "CVE-2026-31532",
"product_status": {
"known_affected": [
"T053276",
"2951",
"T002207",
"67646",
"T000126",
"T027843",
"398363",
"T053842",
"T004914",
"1607324",
"T032255"
]
},
"release_date": "2026-04-22T22:00:00.000+00:00",
"title": "CVE-2026-31532"
}
]
}
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
The approach is described in our paper Mapping CVEs to MITRE ATT&CK Techniques: A Curated Gold-Set Classifier and the Limits of LLM-Assisted Label Expansion.