Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2026-6100 (GCVE-0-2026-6100)
Vulnerability from cvelistv5 – Published: 2026-04-13 17:15 – Updated: 2026-06-10 18:58| Vendor | Product | Version | |
|---|---|---|---|
| Python Software Foundation | CPython |
Affected:
0 , < 3.13.14
(python)
Affected: 3.14.0a1 , < 3.14.5rc1 (python) Affected: 3.15.0a1 , < 3.15.0b1 (python) |
{
"containers": {
"adp": [
{
"metrics": [
{
"other": {
"content": {
"id": "CVE-2026-6100",
"options": [
{
"Exploitation": "none"
},
{
"Automatable": "no"
},
{
"Technical Impact": "total"
}
],
"role": "CISA Coordinator",
"timestamp": "2026-04-13T19:21:03.412763Z",
"version": "2.0.3"
},
"type": "ssvc"
}
}
],
"providerMetadata": {
"dateUpdated": "2026-04-13T19:21:10.878Z",
"orgId": "134c704f-9b21-4f2e-91b3-4a467353bcc0",
"shortName": "CISA-ADP"
},
"title": "CISA ADP Vulnrichment"
},
{
"providerMetadata": {
"dateUpdated": "2026-04-13T19:29:27.322Z",
"orgId": "af854a3a-2127-422b-91ae-364da2661108",
"shortName": "CVE"
},
"references": [
{
"url": "http://www.openwall.com/lists/oss-security/2026/04/13/10"
}
],
"title": "CVE Program Container"
}
],
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "CPython",
"repo": "https://github.com/python/cpython",
"vendor": "Python Software Foundation",
"versions": [
{
"lessThan": "3.13.14",
"status": "affected",
"version": "0",
"versionType": "python"
},
{
"lessThan": "3.14.5rc1",
"status": "affected",
"version": "3.14.0a1",
"versionType": "python"
},
{
"lessThan": "3.15.0b1",
"status": "affected",
"version": "3.15.0a1",
"versionType": "python"
}
]
}
],
"credits": [
{
"lang": "en",
"type": "reporter",
"value": "Ryan Hileman"
},
{
"lang": "en",
"type": "remediation developer",
"value": "Stan Ulbrych"
},
{
"lang": "en",
"type": "coordinator",
"value": "Seth Larson"
},
{
"lang": "en",
"type": "finder",
"value": "Stan Ulbrych"
},
{
"lang": "en",
"type": "finder",
"value": "Ryan Hileman"
}
],
"descriptions": [
{
"lang": "en",
"supportingMedia": [
{
"base64": false,
"type": "text/html",
"value": "Use-after-free (UAF) was possible in the `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile` when a memory allocation fails with a `MemoryError` and the decompression instance is re-used. This scenario can be triggered if the process is under memory pressure. The fix cleans up the dangling pointer in this specific error condition.\u003cbr\u003e\u003cbr\u003eThe vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable."
}
],
"value": "Use-after-free (UAF) was possible in the `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile` when a memory allocation fails with a `MemoryError` and the decompression instance is re-used. This scenario can be triggered if the process is under memory pressure. The fix cleans up the dangling pointer in this specific error condition.\n\nThe vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable."
}
],
"metrics": [
{
"cvssV4_0": {
"Automatable": "NOT_DEFINED",
"Recovery": "NOT_DEFINED",
"Safety": "NOT_DEFINED",
"attackComplexity": "HIGH",
"attackRequirements": "PRESENT",
"attackVector": "NETWORK",
"baseScore": 9.1,
"baseSeverity": "CRITICAL",
"exploitMaturity": "NOT_DEFINED",
"privilegesRequired": "NONE",
"providerUrgency": "NOT_DEFINED",
"subAvailabilityImpact": "NONE",
"subConfidentialityImpact": "NONE",
"subIntegrityImpact": "NONE",
"userInteraction": "NONE",
"valueDensity": "NOT_DEFINED",
"vectorString": "CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N",
"version": "4.0",
"vulnAvailabilityImpact": "NONE",
"vulnConfidentialityImpact": "HIGH",
"vulnIntegrityImpact": "HIGH",
"vulnerabilityResponseEffort": "NOT_DEFINED"
},
"format": "CVSS",
"scenarios": [
{
"lang": "en",
"value": "GENERAL"
}
]
}
],
"problemTypes": [
{
"descriptions": [
{
"cweId": "CWE-416",
"description": "CWE-416 Use after free",
"lang": "en",
"type": "CWE"
}
]
},
{
"descriptions": [
{
"cweId": "CWE-787",
"description": "CWE-787 Out-of-bounds write",
"lang": "en",
"type": "CWE"
}
]
}
],
"providerMetadata": {
"dateUpdated": "2026-06-10T18:58:01.371Z",
"orgId": "28c92f92-d60d-412d-b760-e73465c3df22",
"shortName": "PSF"
},
"references": [
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/pull/148396"
},
{
"tags": [
"vendor-advisory"
],
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
},
{
"tags": [
"issue-tracking"
],
"url": "https://github.com/python/cpython/issues/148395"
},
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/commit/47128e64f98c3a20271138a98c2922bea2a3ee0e"
},
{
"tags": [
"patch"
],
"url": "https://github.com/python/cpython/commit/e20c6c9667c99ecaab96e1a2b3767082841ffc8b"
}
],
"source": {
"discovery": "UNKNOWN"
},
"title": "Use-after-free in lzma.LZMADecompressor, bz2.BZ2Decompressor, and gzip.GzipFile after re-use under memory pressure",
"x_generator": {
"engine": "Vulnogram 0.6.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "28c92f92-d60d-412d-b760-e73465c3df22",
"assignerShortName": "PSF",
"cveId": "CVE-2026-6100",
"datePublished": "2026-04-13T17:15:47.606Z",
"dateReserved": "2026-04-10T21:13:45.428Z",
"dateUpdated": "2026-06-10T18:58:01.371Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2026-6100",
"date": "2026-06-17",
"epss": "0.00517",
"percentile": "0.39766"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2026-6100\",\"sourceIdentifier\":\"cna@python.org\",\"published\":\"2026-04-13T18:16:31.297\",\"lastModified\":\"2026-04-17T15:18:16.507\",\"vulnStatus\":\"Awaiting Analysis\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"Use-after-free (UAF) was possible in the `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile` when a memory allocation fails with a `MemoryError` and the decompression instance is re-used. This scenario can be triggered if the process is under memory pressure. The fix cleans up the dangling pointer in this specific error condition.\\n\\nThe vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.\"}],\"metrics\":{\"cvssMetricV40\":[{\"source\":\"cna@python.org\",\"type\":\"Secondary\",\"cvssData\":{\"version\":\"4.0\",\"vectorString\":\"CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X\",\"baseScore\":9.1,\"baseSeverity\":\"CRITICAL\",\"attackVector\":\"NETWORK\",\"attackComplexity\":\"HIGH\",\"attackRequirements\":\"PRESENT\",\"privilegesRequired\":\"NONE\",\"userInteraction\":\"NONE\",\"vulnConfidentialityImpact\":\"HIGH\",\"vulnIntegrityImpact\":\"HIGH\",\"vulnAvailabilityImpact\":\"NONE\",\"subConfidentialityImpact\":\"NONE\",\"subIntegrityImpact\":\"NONE\",\"subAvailabilityImpact\":\"NONE\",\"exploitMaturity\":\"NOT_DEFINED\",\"confidentialityRequirement\":\"NOT_DEFINED\",\"integrityRequirement\":\"NOT_DEFINED\",\"availabilityRequirement\":\"NOT_DEFINED\",\"modifiedAttackVector\":\"NOT_DEFINED\",\"modifiedAttackComplexity\":\"NOT_DEFINED\",\"modifiedAttackRequirements\":\"NOT_DEFINED\",\"modifiedPrivilegesRequired\":\"NOT_DEFINED\",\"modifiedUserInteraction\":\"NOT_DEFINED\",\"modifiedVulnConfidentialityImpact\":\"NOT_DEFINED\",\"modifiedVulnIntegrityImpact\":\"NOT_DEFINED\",\"modifiedVulnAvailabilityImpact\":\"NOT_DEFINED\",\"modifiedSubConfidentialityImpact\":\"NOT_DEFINED\",\"modifiedSubIntegrityImpact\":\"NOT_DEFINED\",\"modifiedSubAvailabilityImpact\":\"NOT_DEFINED\",\"Safety\":\"NOT_DEFINED\",\"Automatable\":\"NOT_DEFINED\",\"Recovery\":\"NOT_DEFINED\",\"valueDensity\":\"NOT_DEFINED\",\"vulnerabilityResponseEffort\":\"NOT_DEFINED\",\"providerUrgency\":\"NOT_DEFINED\"}}]},\"weaknesses\":[{\"source\":\"cna@python.org\",\"type\":\"Secondary\",\"description\":[{\"lang\":\"en\",\"value\":\"CWE-416\"},{\"lang\":\"en\",\"value\":\"CWE-787\"}]}],\"references\":[{\"url\":\"https://github.com/python/cpython/commit/47128e64f98c3a20271138a98c2922bea2a3ee0e\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/commit/e20c6c9667c99ecaab96e1a2b3767082841ffc8b\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/issues/148395\",\"source\":\"cna@python.org\"},{\"url\":\"https://github.com/python/cpython/pull/148396\",\"source\":\"cna@python.org\"},{\"url\":\"https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/\",\"source\":\"cna@python.org\"},{\"url\":\"http://www.openwall.com/lists/oss-security/2026/04/13/10\",\"source\":\"af854a3a-2127-422b-91ae-364da2661108\"}]}}",
"vulnrichment": {
"containers": "{\"adp\": [{\"title\": \"CVE Program Container\", \"references\": [{\"url\": \"http://www.openwall.com/lists/oss-security/2026/04/13/10\"}], \"providerMetadata\": {\"orgId\": \"af854a3a-2127-422b-91ae-364da2661108\", \"shortName\": \"CVE\", \"dateUpdated\": \"2026-04-13T19:29:27.322Z\"}}, {\"title\": \"CISA ADP Vulnrichment\", \"metrics\": [{\"other\": {\"type\": \"ssvc\", \"content\": {\"id\": \"CVE-2026-6100\", \"role\": \"CISA Coordinator\", \"options\": [{\"Exploitation\": \"none\"}, {\"Automatable\": \"no\"}, {\"Technical Impact\": \"total\"}], \"version\": \"2.0.3\", \"timestamp\": \"2026-04-13T19:21:03.412763Z\"}}}], \"providerMetadata\": {\"orgId\": \"134c704f-9b21-4f2e-91b3-4a467353bcc0\", \"shortName\": \"CISA-ADP\", \"dateUpdated\": \"2026-04-13T19:21:07.815Z\"}}], \"cna\": {\"title\": \"Use-after-free in lzma.LZMADecompressor, bz2.BZ2Decompressor, and gzip.GzipFile after re-use under memory pressure\", \"source\": {\"discovery\": \"UNKNOWN\"}, \"credits\": [{\"lang\": \"en\", \"type\": \"reporter\", \"value\": \"Ryan Hileman\"}, {\"lang\": \"en\", \"type\": \"remediation developer\", \"value\": \"Stan Ulbrych\"}, {\"lang\": \"en\", \"type\": \"coordinator\", \"value\": \"Seth Larson\"}, {\"lang\": \"en\", \"type\": \"finder\", \"value\": \"Stan Ulbrych\"}, {\"lang\": \"en\", \"type\": \"finder\", \"value\": \"Ryan Hileman\"}], \"metrics\": [{\"format\": \"CVSS\", \"cvssV4_0\": {\"Safety\": \"NOT_DEFINED\", \"version\": \"4.0\", \"Recovery\": \"NOT_DEFINED\", \"baseScore\": 9.1, \"Automatable\": \"NOT_DEFINED\", \"attackVector\": \"NETWORK\", \"baseSeverity\": \"CRITICAL\", \"valueDensity\": \"NOT_DEFINED\", \"vectorString\": \"CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N\", \"exploitMaturity\": \"NOT_DEFINED\", \"providerUrgency\": \"NOT_DEFINED\", \"userInteraction\": \"NONE\", \"attackComplexity\": \"HIGH\", \"attackRequirements\": \"PRESENT\", \"privilegesRequired\": \"NONE\", \"subIntegrityImpact\": \"NONE\", \"vulnIntegrityImpact\": \"HIGH\", \"subAvailabilityImpact\": \"NONE\", \"vulnAvailabilityImpact\": \"NONE\", \"subConfidentialityImpact\": \"NONE\", \"vulnConfidentialityImpact\": \"HIGH\", \"vulnerabilityResponseEffort\": \"NOT_DEFINED\"}, \"scenarios\": [{\"lang\": \"en\", \"value\": \"GENERAL\"}]}], \"affected\": [{\"repo\": \"https://github.com/python/cpython\", \"vendor\": \"Python Software Foundation\", \"product\": \"CPython\", \"versions\": [{\"status\": \"affected\", \"version\": \"0\", \"lessThan\": \"3.15.0\", \"versionType\": \"python\"}], \"defaultStatus\": \"unaffected\"}], \"references\": [{\"url\": \"https://github.com/python/cpython/pull/148396\", \"tags\": [\"patch\"]}, {\"url\": \"https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/\", \"tags\": [\"vendor-advisory\"]}, {\"url\": \"https://github.com/python/cpython/issues/148395\", \"tags\": [\"issue-tracking\"]}, {\"url\": \"https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/python/cpython/commit/47128e64f98c3a20271138a98c2922bea2a3ee0e\", \"tags\": [\"patch\"]}, {\"url\": \"https://github.com/python/cpython/commit/e20c6c9667c99ecaab96e1a2b3767082841ffc8b\", \"tags\": [\"patch\"]}], \"x_generator\": {\"engine\": \"Vulnogram 0.6.0\"}, \"descriptions\": [{\"lang\": \"en\", \"value\": \"Use-after-free (UAF) was possible in the `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile` when a memory allocation fails with a `MemoryError` and the decompression instance is re-used. This scenario can be triggered if the process is under memory pressure. The fix cleans up the dangling pointer in this specific error condition.\\n\\nThe vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.\", \"supportingMedia\": [{\"type\": \"text/html\", \"value\": \"Use-after-free (UAF) was possible in the `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile` when a memory allocation fails with a `MemoryError` and the decompression instance is re-used. This scenario can be triggered if the process is under memory pressure. The fix cleans up the dangling pointer in this specific error condition.\u003cbr\u003e\u003cbr\u003eThe vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.\", \"base64\": false}]}], \"problemTypes\": [{\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-416\", \"description\": \"CWE-416 Use after free\"}]}, {\"descriptions\": [{\"lang\": \"en\", \"type\": \"CWE\", \"cweId\": \"CWE-787\", \"description\": \"CWE-787 Out-of-bounds write\"}]}], \"providerMetadata\": {\"orgId\": \"28c92f92-d60d-412d-b760-e73465c3df22\", \"shortName\": \"PSF\", \"dateUpdated\": \"2026-04-14T14:30:25.622Z\"}}}",
"cveMetadata": "{\"cveId\": \"CVE-2026-6100\", \"state\": \"PUBLISHED\", \"dateUpdated\": \"2026-04-14T14:30:25.622Z\", \"dateReserved\": \"2026-04-10T21:13:45.428Z\", \"assignerOrgId\": \"28c92f92-d60d-412d-b760-e73465c3df22\", \"datePublished\": \"2026-04-13T17:15:47.606Z\", \"assignerShortName\": \"PSF\"}",
"dataType": "CVE_RECORD",
"dataVersion": "5.2"
}
}
}
RHSA-2026:19571
Vulnerability from csaf_redhat - Published: 2026-05-20 09:48 - Updated: 2026-06-16 21:36A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for python3.9 is now available for Red Hat Enterprise Linux 9.0 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Python is an interpreted, interactive, object-oriented programming language, which includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems.\n\nSecurity Fix(es):\n\n* python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules (CVE-2026-6100)\n\n* python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API (CVE-2026-4786)\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:19571",
"url": "https://access.redhat.com/errata/RHSA-2026:19571"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_19571.json"
}
],
"title": "Red Hat Security Advisory: python3.9 security update",
"tracking": {
"current_release_date": "2026-06-16T21:36:52+00:00",
"generator": {
"date": "2026-06-16T21:36:52+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:19571",
"initial_release_date": "2026-05-20T09:48:14+00:00",
"revision_history": [
{
"date": "2026-05-20T09:48:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-20T09:48:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:36:52+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:9.0::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_e4s:9.0::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.10-4.el9_0.11?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.10-4.el9_0.11?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.10-4.el9_0.11?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.10-4.el9_0.11?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.10-4.el9_0.11?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"product": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"product_id": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.10-4.el9_0.11?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"product": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"product_id": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.10-4.el9_0.11?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.10-4.el9_0.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.10-4.el9_0.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.10-4.el9_0.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.10-4.el9_0.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.10-4.el9_0.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"product": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"product_id": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.10-4.el9_0.11?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-libs-0:3.9.10-4.el9_0.11.i686",
"product": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.i686",
"product_id": "python3-libs-0:3.9.10-4.el9_0.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.10-4.el9_0.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"product": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"product_id": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.10-4.el9_0.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"product": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"product_id": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.10-4.el9_0.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-devel-0:3.9.10-4.el9_0.11.i686",
"product": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.i686",
"product_id": "python3-devel-0:3.9.10-4.el9_0.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.10-4.el9_0.11?arch=i686"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.10-4.el9_0.11?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3-libs-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.10-4.el9_0.11?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.10-4.el9_0.11?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.10-4.el9_0.11?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-devel-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3-devel-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.10-4.el9_0.11?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"product": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"product_id": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.10-4.el9_0.11?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.9-0:3.9.10-4.el9_0.11.src",
"product": {
"name": "python3.9-0:3.9.10-4.el9_0.11.src",
"product_id": "python3.9-0:3.9.10-4.el9_0.11.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9@3.9.10-4.el9_0.11?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"product": {
"name": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"product_id": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-unversioned-command@3.9.10-4.el9_0.11?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.10-4.el9_0.11.src as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src"
},
"product_reference": "python3.9-0:3.9.10-4.el9_0.11.src",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.9.0)",
"product_id": "AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "AppStream-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.10-4.el9_0.11.src as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src"
},
"product_reference": "python3.9-0:3.9.10-4.el9_0.11.src",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS E4S (v.9.0)",
"product_id": "BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"relates_to_product_reference": "BaseOS-9.0.0.Z.E4S"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T09:48:14+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",
"product_ids": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19571"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T09:48:14+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",
"product_ids": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19571"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"AppStream-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python-unversioned-command-0:3.9.10-4.el9_0.11.noarch",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-devel-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-libs-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3-tkinter-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-0:3.9.10-4.el9_0.11.src",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debuginfo-0:3.9.10-4.el9_0.11.x86_64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.aarch64",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.i686",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.ppc64le",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.s390x",
"BaseOS-9.0.0.Z.E4S:python3.9-debugsource-0:3.9.10-4.el9_0.11.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:19576
Vulnerability from csaf_redhat - Published: 2026-05-20 11:27 - Updated: 2026-06-16 21:37A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for python3.9 is now available for Red Hat Enterprise Linux 9.6 Extended Update Support.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Python is an interpreted, interactive, object-oriented programming language, which includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems.\n\nSecurity Fix(es):\n\n* python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules (CVE-2026-6100)\n\n* python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API (CVE-2026-4786)\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:19576",
"url": "https://access.redhat.com/errata/RHSA-2026:19576"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_19576.json"
}
],
"title": "Red Hat Security Advisory: python3.9 security update",
"tracking": {
"current_release_date": "2026-06-16T21:37:48+00:00",
"generator": {
"date": "2026-06-16T21:37:48+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:19576",
"initial_release_date": "2026-05-20T11:27:49+00:00",
"revision_history": [
{
"date": "2026-05-20T11:27:49+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-20T11:27:49+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:37:48+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.6::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product": {
"name": "Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.6::crb"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"product": {
"name": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"product_id": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-unversioned-command@3.9.21-2.el9_6.6?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.21-2.el9_6.6?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"product": {
"name": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"product_id": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.21-2.el9_6.6?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"product": {
"name": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"product_id": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.21-2.el9_6.6?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-test-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-test-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.21-2.el9_6.6?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"product": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"product_id": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.21-2.el9_6.6?arch=i686"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.21-2.el9_6.6?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"product": {
"name": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"product_id": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.21-2.el9_6.6?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.21-2.el9_6.6?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"product": {
"name": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"product_id": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.21-2.el9_6.6?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.9-0:3.9.21-2.el9_6.6.src",
"product": {
"name": "python3.9-0:3.9.21-2.el9_6.6.src",
"product_id": "python3.9-0:3.9.21-2.el9_6.6.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9@3.9.21-2.el9_6.6?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.21-2.el9_6.6.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src"
},
"product_reference": "python3.9-0:3.9.21-2.el9_6.6.src",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.6)",
"product_id": "AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "AppStream-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.21-2.el9_6.6.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src"
},
"product_reference": "python3.9-0:3.9.21-2.el9_6.6.src",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.6)",
"product_id": "BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "BaseOS-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-test-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.21-2.el9_6.6.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src"
},
"product_reference": "python3.9-0:3.9.21-2.el9_6.6.src",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.6)",
"product_id": "CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"relates_to_product_reference": "CRB-9.6.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T11:27:49+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",
"product_ids": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19576"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T11:27:49+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",
"product_ids": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19576"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"AppStream-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"BaseOS-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python-unversioned-command-0:3.9.21-2.el9_6.6.noarch",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-debug-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-devel-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-idle-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-libs-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-test-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3-tkinter-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-0:3.9.21-2.el9_6.6.src",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debuginfo-0:3.9.21-2.el9_6.6.x86_64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.aarch64",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.i686",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.ppc64le",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.s390x",
"CRB-9.6.0.Z.EUS:python3.9-debugsource-0:3.9.21-2.el9_6.6.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:19590
Vulnerability from csaf_redhat - Published: 2026-05-20 11:36 - Updated: 2026-06-16 21:36A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for python3 is now available for Red Hat Enterprise Linux 8.4 Advanced Mission Critical Update Support and Red Hat Enterprise Linux 8.4 Extended Update Support Long-Life Add-On.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Python is an interpreted, interactive, object-oriented programming language, which includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems.\n\nSecurity Fix(es):\n\n* python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules (CVE-2026-6100)\n\n* python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API (CVE-2026-4786)\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:19590",
"url": "https://access.redhat.com/errata/RHSA-2026:19590"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_19590.json"
}
],
"title": "Red Hat Security Advisory: python3 security update",
"tracking": {
"current_release_date": "2026-06-16T21:36:46+00:00",
"generator": {
"date": "2026-06-16T21:36:46+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:19590",
"initial_release_date": "2026-05-20T11:36:35+00:00",
"revision_history": [
{
"date": "2026-05-20T11:36:35+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-20T11:36:35+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:36:46+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_aus:8.4::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_aus:8.4::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus_long_life:8.4::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus_long_life:8.4::baseos"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "platform-python-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "platform-python-0:3.6.8-39.el8_4.11.i686",
"product_id": "platform-python-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"product_id": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python-debug@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"product_id": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python-devel@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-test-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-test-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debugsource@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debuginfo@3.6.8-39.el8_4.11?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"product": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"product_id": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.6.8-39.el8_4.11?arch=i686"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python-debug@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python-devel@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debugsource@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debuginfo@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/platform-python@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.6.8-39.el8_4.11?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"product": {
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"product_id": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.6.8-39.el8_4.11?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-0:3.6.8-39.el8_4.11.src",
"product": {
"name": "python3-0:3.6.8-39.el8_4.11.src",
"product_id": "python3-0:3.6.8-39.el8_4.11.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.6.8-39.el8_4.11?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.6.8-39.el8_4.11.src as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src"
},
"product_reference": "python3-0:3.6.8-39.el8_4.11.src",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream AUS (v.8.4)",
"product_id": "AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.6.8-39.el8_4.11.src as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src"
},
"product_reference": "python3-0:3.6.8-39.el8_4.11.src",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS EXTENSION (v.8.4)",
"product_id": "AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "AppStream-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.6.8-39.el8_4.11.src as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src"
},
"product_reference": "python3-0:3.6.8-39.el8_4.11.src",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS AUS (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.AUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.6.8-39.el8_4.11.src as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src"
},
"product_reference": "python3-0:3.6.8-39.el8_4.11.src",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-test-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.i686 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS EXTENSION (v.8.4)",
"product_id": "BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
},
"product_reference": "python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"relates_to_product_reference": "BaseOS-8.4.0.Z.EUS.EXTENSION"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T11:36:35+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",
"product_ids": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19590"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-20T11:36:35+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",
"product_ids": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:19590"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"AppStream-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.AUS:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-debug-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:platform-python-devel-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-0:3.6.8-39.el8_4.11.src",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debuginfo-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-debugsource-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-idle-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-libs-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-test-0:3.6.8-39.el8_4.11.x86_64",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.i686",
"BaseOS-8.4.0.Z.EUS.EXTENSION:python3-tkinter-0:3.6.8-39.el8_4.11.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:21275
Vulnerability from csaf_redhat - Published: 2026-05-27 07:45 - Updated: 2026-06-17 20:22A vulnerability in Python’s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in GLib (Gnome Lib). This vulnerability allows a remote attacker to cause heap corruption, leading to a denial of service or potential code execution via a buffer-underflow in the GVariant parser when processing maliciously crafted input strings.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in glib. This vulnerability allows a heap buffer overflow and denial-of-service (DoS) via an integer overflow in GLib's GIO (GLib Input/Output) escape_byte_string() function when processing malicious file or remote filesystem attribute values.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A memory amplification vulnerability in libexpat allows attackers to trigger excessive dynamic memory allocations by submitting specially crafted XML input. A small input (~250 KiB) can cause the parser to allocate hundreds of megabytes, leading to denial-of-service (DoS) through memory exhaustion.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
An injection flaw has been discovered in Python. When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in p11-kit. A remote attacker could exploit this vulnerability by calling the C_DeriveKey function on a remote token with specific IBM kyber or IBM btc derive mechanism parameters set to NULL. This could lead to the RPC-client attempting to return an uninitialized value, potentially resulting in a NULL dereference or undefined behavior. This issue may cause an application level denial of service or other unpredictable system states.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.
CWE-778 - Insufficient Logging| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in Python. The `webbrowser.open()` API, used to launch web browsers, does not properly sanitize input. This allows a remote attacker to craft a malicious URL containing leading dashes. When such a URL is opened, certain web browsers may interpret these dashes as command-line options, which could lead to unexpected behavior, information disclosure, or potentially arbitrary code execution, impacting the integrity of the system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libcap. A local unprivileged user can exploit a Time-of-check-to-time-of-use (TOCTOU) race condition in the `cap_set_file()` function. This allows an attacker with write access to a parent directory to redirect file capability updates to an attacker-controlled file. By doing so, capabilities can be injected into or stripped from unintended executables, leading to privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in systemd, a system and service manager. An unprivileged user can exploit this vulnerability by making an Inter-Process Communication (IPC) API call with spurious data. In older versions (v249 and earlier), this can lead to stack overwriting with attacker-controlled content, potentially enabling arbitrary code execution or privilege escalation. In newer versions (v250 and later), the flaw causes systemd to assert and freeze, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in openssl. Applications that use RSASVE key encapsulation, a method for securely exchanging encryption keys, may inadvertently expose sensitive data. This vulnerability arises when an application processes a malicious, invalid RSA public key provided by an attacker without proper validation. Consequently, the application might send the contents of an uninitialized memory buffer, which could contain confidential information, to the attacker.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. A modeline is used to set specific editor options directly from a text file. However, the `complete`, `guitabtooltip`, `printheader` options and the `mapset` function lack proper security checks, allowing an attacker to bypass restrictions and cause arbitrary OS command execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. When the `scp` command is used by a root user to download a file with the legacy protocol option (`-O`) and without preserving original file permissions (`-p`), the downloaded file can be installed with elevated privileges (setuid or setgid). This unexpected behavior could allow a malicious file to execute with higher permissions than intended, posing a security risk through potential privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows a remote attacker to achieve arbitrary command execution by injecting shell metacharacters into a username provided on the command line. Exploitation requires an untrusted username and a non-default configuration of the '%' character in `ssh_config`.
CWE-78 - Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows the system to use unintended Elliptic Curve Digital Signature Algorithm (ECDSA) algorithms. This occurs because the configuration for accepted public key algorithms is misinterpreted, leading to the use of weaker cryptographic methods than intended. This could potentially allow an attacker to compromise the confidentiality of data.
CWE-115 - Misinterpretation of Input| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows for a low integrity impact due to the omission of connection multiplexing confirmation for proxy-mode multiplexing sessions. A local user, under specific and complex conditions requiring user interaction, could potentially establish a multiplexed session without explicit confirmation, leading to unintended data handling.
CWE-306 - Missing Authentication for Critical Function| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in OpenSSH. This vulnerability arises from the incorrect handling of the authorized_keys principals option in uncommon scenarios. Specifically, when a principals list is used with a Certificate Authority that includes comma characters, OpenSSH may misinterpret the input. This could lead to security bypasses, potentially allowing unintended access or information disclosure in specific authentication contexts.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Workaround
|
A flaw was found in Sudo. A local user could exploit a failure in the setuid, setgid, or setgroups calls, which are used to drop privileges before running the mailer. This oversight allows for privilege escalation, enabling the user to gain elevated access on the system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — | ||
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
A flaw was found in MIT Kerberos 5 (krb5). An unauthenticated remote attacker can exploit a NULL pointer dereference vulnerability by calling `gss_accept_sec_context()` on a system with a NegoEx mechanism registered. This can lead to the termination of the process, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in MIT Kerberos 5 (krb5). An unauthenticated remote attacker can exploit an integer underflow and an out-of-bounds read vulnerability by calling `gss_accept_sec_context()` on a system with a NegoEx mechanism registered. This can lead to the process terminating, resulting in a Denial of Service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in NGINX, specifically within the ngx_http_rewrite_module. An unauthenticated attacker can exploit this vulnerability by sending crafted HTTP requests under specific rewrite configurations. This can lead to a heap buffer overflow in the NGINX worker process, which may result in arbitrary code execution if Address Space Layout Randomization (ASLR), a security technique to prevent exploitation, is disabled. Otherwise, this flaw causes a denial of service due to a restart of the NGINX worker process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 | — |
Vendor Fix
fix
|
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 | — | ||
| Unresolved product id: Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 | — |
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Critical"
},
"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": "The latest release of Red Hat Update Infrastructure. For more details, see the product documentation.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat Update Infrastructure (RHUI) container images are based on the latest RHUI RPM packages and the ubi9 or ubi9-init base images.\nThis release updates to the latest version.",
"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:21275",
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "external",
"summary": "https://access.redhat.com/products/red-hat-update-infrastructure",
"url": "https://access.redhat.com/products/red-hat-update-infrastructure"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13837",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14087",
"url": "https://access.redhat.com/security/cve/CVE-2025-14087"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14512",
"url": "https://access.redhat.com/security/cve/CVE-2025-14512"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15282",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-59375",
"url": "https://access.redhat.com/security/cve/CVE-2025-59375"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-6075",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-0672",
"url": "https://access.redhat.com/security/cve/CVE-2026-0672"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-0865",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1502",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2100",
"url": "https://access.redhat.com/security/cve/CVE-2026-2100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2297",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-29111",
"url": "https://access.redhat.com/security/cve/CVE-2026-29111"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-31790",
"url": "https://access.redhat.com/security/cve/CVE-2026-31790"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-34982",
"url": "https://access.redhat.com/security/cve/CVE-2026-34982"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35385",
"url": "https://access.redhat.com/security/cve/CVE-2026-35385"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35386",
"url": "https://access.redhat.com/security/cve/CVE-2026-35386"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35387",
"url": "https://access.redhat.com/security/cve/CVE-2026-35387"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35388",
"url": "https://access.redhat.com/security/cve/CVE-2026-35388"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35414",
"url": "https://access.redhat.com/security/cve/CVE-2026-35414"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35535",
"url": "https://access.redhat.com/security/cve/CVE-2026-35535"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-3644",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40355",
"url": "https://access.redhat.com/security/cve/CVE-2026-40355"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40356",
"url": "https://access.redhat.com/security/cve/CVE-2026-40356"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4224",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-42945",
"url": "https://access.redhat.com/security/cve/CVE-2026-42945"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4519",
"url": "https://access.redhat.com/security/cve/CVE-2026-4519"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4786",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4878",
"url": "https://access.redhat.com/security/cve/CVE-2026-4878"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6100",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://docs.redhat.com/en/documentation/red_hat_update_infrastructure/5",
"url": "https://docs.redhat.com/en/documentation/red_hat_update_infrastructure/5"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21275.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Update Infrastructure 5.1 security update",
"tracking": {
"current_release_date": "2026-06-17T20:22:28+00:00",
"generator": {
"date": "2026-06-17T20:22:28+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:21275",
"initial_release_date": "2026-05-27T07:45:38+00:00",
"revision_history": [
{
"date": "2026-05-27T07:45:38+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-27T07:45:44+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-17T20:22:28+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Update Infrastructure 5",
"product": {
"name": "Red Hat Update Infrastructure 5",
"product_id": "Red Hat Update Infrastructure 5",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhui:5::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat Update Infrastructure"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"product": {
"name": "registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"product_id": "registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"product_identification_helper": {
"purl": "pkg:oci/cds-rhel9@sha256%3A29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a?arch=amd64\u0026repository_url=registry.redhat.io/rhui5/cds-rhel9\u0026tag=1779798159"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"product": {
"name": "registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"product_id": "registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"product_identification_helper": {
"purl": "pkg:oci/haproxy-rhel9@sha256%3Aeeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d?arch=amd64\u0026repository_url=registry.redhat.io/rhui5/haproxy-rhel9\u0026tag=1779798164"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"product": {
"name": "registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"product_id": "registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"product_identification_helper": {
"purl": "pkg:oci/installer-rhel9@sha256%3Afb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17?arch=amd64\u0026repository_url=registry.redhat.io/rhui5/installer-rhel9\u0026tag=1779798165"
}
}
},
{
"category": "product_version",
"name": "registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64",
"product": {
"name": "registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64",
"product_id": "registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64",
"product_identification_helper": {
"purl": "pkg:oci/rhua-rhel9@sha256%3Aae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8?arch=amd64\u0026repository_url=registry.redhat.io/rhui5/rhua-rhel9\u0026tag=1779798222"
}
}
}
],
"category": "architecture",
"name": "amd64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64 as a component of Red Hat Update Infrastructure 5",
"product_id": "Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64"
},
"product_reference": "registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"relates_to_product_reference": "Red Hat Update Infrastructure 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64 as a component of Red Hat Update Infrastructure 5",
"product_id": "Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
},
"product_reference": "registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"relates_to_product_reference": "Red Hat Update Infrastructure 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64 as a component of Red Hat Update Infrastructure 5",
"product_id": "Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64"
},
"product_reference": "registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"relates_to_product_reference": "Red Hat Update Infrastructure 5"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64 as a component of Red Hat Update Infrastructure 5",
"product_id": "Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
},
"product_reference": "registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64",
"relates_to_product_reference": "Red Hat Update Infrastructure 5"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-6075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-31T17:01:47.052517+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2408891"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in Python\u2019s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Quadratic complexity in os.path.expandvars() with user-controlled template",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low rather than Moderate because it only causes a performance inefficiency without affecting code execution, data integrity, or confidentiality. The flaw lies in the algorithmic complexity of os.path.expandvars(), which can become quadratic when processing crafted input containing repetitive or nested environment variable references. Exploitation requires the attacker to control the input string passed to this function, which is uncommon in secure applications. Moreover, the impact is limited to increased CPU utilization and potential slowdown, not system compromise or data manipulation. Since the issue does not introduce memory corruption, privilege escalation, or information disclosure risks, its overall impact scope and exploitability are minimal, justifying a Low severity rating.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "RHBZ#2408891",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2408891"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-6075",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/136065",
"url": "https://github.com/python/cpython/issues/136065"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/"
}
],
"release_date": "2025-10-31T16:41:34.983000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "python: Quadratic complexity in os.path.expandvars() with user-controlled template"
},
{
"cve": "CVE-2025-13837",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-01T19:01:32.492656+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418084"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Out-of-memory when loading Plist",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploited by Python applications processing malicious or untrusted Plist files, which are not typically done in Linux systems or applications. Furthermore, this flaw can cause only a denial of service with no other security impact. Due to these reasons, this vulnerability has been rated with a moderate severity.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "RHBZ#2418084",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418084"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13837",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13837"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/119342",
"url": "https://github.com/python/cpython/issues/119342"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/119343",
"url": "https://github.com/python/cpython/pull/119343"
}
],
"release_date": "2025-12-01T18:13:32.739000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Out-of-memory when loading Plist"
},
{
"acknowledgments": [
{
"names": [
"Sovereign Tech Resilience program"
],
"organization": "Sovereign Tech Agency"
},
{
"names": [
"treeplus"
]
}
],
"cve": "CVE-2025-14087",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2025-12-05T08:35:24.744000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419093"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GLib (Gnome Lib). This vulnerability allows a remote attacker to cause heap corruption, leading to a denial of service or potential code execution via a buffer-underflow in the GVariant parser when processing maliciously crafted input strings.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "glib: GLib: Buffer underflow in GVariant parser leads to heap corruption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The highest threat is to system availability due to potential application crashes when processing maliciously crafted input strings through GLib\u0027s GVariant parser. This issue affects applications that utilize g_variant_parse() on untrusted data, leading to memory corruption and possible denial of service.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14087"
},
{
"category": "external",
"summary": "RHBZ#2419093",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419093"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14087",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14087"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14087",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14087"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/glib/-/issues/3834",
"url": "https://gitlab.gnome.org/GNOME/glib/-/issues/3834"
}
],
"release_date": "2025-12-05T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.6,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "glib: GLib: Buffer underflow in GVariant parser leads to heap corruption"
},
{
"acknowledgments": [
{
"names": [
"Codean Labs"
]
}
],
"cve": "CVE-2025-14512",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2025-12-11T06:22:59.701000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2421339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in glib. This vulnerability allows a heap buffer overflow and denial-of-service (DoS) via an integer overflow in GLib\u0027s GIO (GLib Input/Output) escape_byte_string() function when processing malicious file or remote filesystem attribute values.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "glib: Integer Overflow in GLib GIO Attribute Escaping Causes Heap Buffer Overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat products because an integer overflow in GLib\u0027s GIO `escape_byte_string()` function can lead to a heap buffer overflow and denial-of-service. This occurs when processing specially crafted file or remote filesystem attribute values, requiring an attacker to provide malicious input.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14512"
},
{
"category": "external",
"summary": "RHBZ#2421339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2421339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14512",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14512"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14512",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14512"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/glib/-/issues/3845",
"url": "https://gitlab.gnome.org/GNOME/glib/-/issues/3845"
}
],
"release_date": "2025-12-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "glib: Integer Overflow in GLib GIO Attribute Escaping Causes Heap Buffer Overflow"
},
{
"cve": "CVE-2025-15282",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:20.971828+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431366"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Header injection via newlines in data URL mediatype in Python",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "RHBZ#2431366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431366"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15282",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143925",
"url": "https://github.com/python/cpython/issues/143925"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143926",
"url": "https://github.com/python/cpython/pull/143926"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/"
}
],
"release_date": "2026-01-20T21:35:13.865000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Header injection via newlines in data URL mediatype in Python"
},
{
"cve": "CVE-2025-59375",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-09-15T03:00:59.775098+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2395108"
}
],
"notes": [
{
"category": "description",
"text": "A memory amplification vulnerability in libexpat allows attackers to trigger excessive dynamic memory allocations by submitting specially crafted XML input. A small input (~250 KiB) can cause the parser to allocate hundreds of megabytes, leading to denial-of-service (DoS) through memory exhaustion.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "firefox: thunderbird: expat: libexpat in Expat allows attackers to trigger large dynamic memory allocations via a small document that is submitted for parsing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue is Important rather than Critical because, while it allows for significant resource exhaustion leading to denial-of-service (DoS), it does not enable arbitrary code execution, data leakage, or privilege escalation. The vulnerability stems from an uncontrolled memory amplification behavior in libexpat\u2019s parser, where a relatively small XML payload can cause disproportionately large heap allocations. However, the flaw is limited in scope to service disruption and requires the attacker to submit a crafted XML document\u2014something that can be mitigated with proper input validation and memory usage limits. Therefore, while the exploitability is high, the impact is confined to availability, not confidentiality or integrity, making it a high-severity but not critical flaw.\n\nIn Firefox and Thunderbird, where libexpat is a transitive userspace dependency, exploitation usually just crashes the application (app-level DoS), so it is classified as Moderate instead of Important.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-59375"
},
{
"category": "external",
"summary": "RHBZ#2395108",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2395108"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-59375",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-59375"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-59375",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-59375"
},
{
"category": "external",
"summary": "https://www.mozilla.org/security/advisories/mfsa2026-22/#CVE-2025-59375",
"url": "https://www.mozilla.org/security/advisories/mfsa2026-22/#CVE-2025-59375"
},
{
"category": "external",
"summary": "https://www.mozilla.org/security/advisories/mfsa2026-24/#CVE-2025-59375",
"url": "https://www.mozilla.org/security/advisories/mfsa2026-24/#CVE-2025-59375"
}
],
"release_date": "2025-09-15T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "To mitigate the issue, limit XML input size and complexity before parsing, and avoid accepting compressed or deeply nested XML. Use OS-level resource controls (like ulimit or setrlimit()) to cap memory usage, or run the parser in a sandboxed or isolated process with strict memory and CPU limits. This helps prevent denial-of-service by containing excessive resource consumption.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "firefox: thunderbird: expat: libexpat in Expat allows attackers to trigger large dynamic memory allocations via a small document that is submitted for parsing"
},
{
"cve": "CVE-2026-0672",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-20T22:02:15.663936+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431374"
}
],
"notes": [
{
"category": "description",
"text": "An injection flaw has been discovered in Python. When using http.cookies.Morsel, user-controlled cookie values and parameters can allow injecting HTTP headers into messages. Patch rejects all control characters within cookie names, values, and parameters.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Header injection in http.cookies.Morsel in Python",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-0672"
},
{
"category": "external",
"summary": "RHBZ#2431374",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431374"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-0672",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-0672"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-0672",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-0672"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143919",
"url": "https://github.com/python/cpython/issues/143919"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143920",
"url": "https://github.com/python/cpython/pull/143920"
}
],
"release_date": "2026-01-20T21:52:33.925000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Header injection in http.cookies.Morsel in Python"
},
{
"cve": "CVE-2026-0865",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:26.694713+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431367"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: wsgiref.headers.Headers allows header newline injection in Python",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "RHBZ#2431367",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431367"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-0865",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-0865"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143916",
"url": "https://github.com/python/cpython/issues/143916"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143917",
"url": "https://github.com/python/cpython/pull/143917"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/"
}
],
"release_date": "2026-01-20T21:26:15.274000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: wsgiref.headers.Headers allows header newline injection in Python"
},
{
"cve": "CVE-2026-1502",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-04-10T19:01:07.715197+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457409"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "RHBZ#2457409",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457409"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1502",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1502"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69",
"url": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/146211",
"url": "https://github.com/python/cpython/issues/146211"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/146212",
"url": "https://github.com/python/cpython/pull/146212"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/"
}
],
"release_date": "2026-04-10T17:54:44.121000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers"
},
{
"acknowledgments": [
{
"names": [
"Zoltan Fridrich"
],
"organization": "Red Hat",
"summary": "This issue was discovered by Red Hat."
}
],
"cve": "CVE-2026-2100",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-02-06T12:02:49.002000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437308"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in p11-kit. A remote attacker could exploit this vulnerability by calling the C_DeriveKey function on a remote token with specific IBM kyber or IBM btc derive mechanism parameters set to NULL. This could lead to the RPC-client attempting to return an uninitialized value, potentially resulting in a NULL dereference or undefined behavior. This issue may cause an application level denial of service or other unpredictable system states.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "p11-kit: NULL dereference via C_DeriveKey with specific NULL parameters",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This MODERATE impact flaw in p11-kit allows a remote attacker to cause an application level denial of service or unpredictable system states. Exploitation occurs when the C_DeriveKey function is called on a remote token with specific IBM kyber or IBM btc derive mechanism parameters set to NULL. This affects Red Hat Enterprise Linux 9.8 and 10.2, Fedora 42 and 43, and Red Hat In-Vehicle OS 2.0. Other Red Hat products, including OpenShift Container Platform and various RHEL versions, are not affected as the vulnerable code is not present.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2100"
},
{
"category": "external",
"summary": "RHBZ#2437308",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437308"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2100"
},
{
"category": "external",
"summary": "https://github.com/p11-glue/p11-kit/pull/740",
"url": "https://github.com/p11-glue/p11-kit/pull/740"
}
],
"release_date": "2026-02-06T08:08:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "p11-kit: NULL dereference via C_DeriveKey with specific NULL parameters"
},
{
"cve": "CVE-2026-2297",
"cwe": {
"id": "CWE-778",
"name": "Insufficient Logging"
},
"discovery_date": "2026-03-04T23:01:09.396553+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2444691"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "RHBZ#2444691",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2444691"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2297",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2297"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e",
"url": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e",
"url": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86",
"url": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145506",
"url": "https://github.com/python/cpython/issues/145506"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145507",
"url": "https://github.com/python/cpython/pull/145507"
}
],
"release_date": "2026-03-04T22:10:43.297000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling"
},
{
"cve": "CVE-2026-3644",
"cwe": {
"id": "CWE-791",
"name": "Incomplete Filtering of Special Elements"
},
"discovery_date": "2026-03-16T18:02:25.997880+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448168"
}
],
"notes": [
{
"category": "description",
"text": "A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Incomplete control character validation in http.cookies",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "RHBZ#2448168",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448168"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3644",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3644"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4",
"url": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145599",
"url": "https://github.com/python/cpython/issues/145599"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145600",
"url": "https://github.com/python/cpython/pull/145600"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/"
}
],
"release_date": "2026-03-16T17:37:31.344000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Incomplete control character validation in http.cookies"
},
{
"cve": "CVE-2026-4224",
"cwe": {
"id": "CWE-805",
"name": "Buffer Access with Incorrect Length Value"
},
"discovery_date": "2026-03-16T19:01:54.161187+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448181"
}
],
"notes": [
{
"category": "description",
"text": "A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Stack overflow parsing XML with deeply nested DTD content models",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "RHBZ#2448181",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448181"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4224",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4224"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a",
"url": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3",
"url": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768",
"url": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145986",
"url": "https://github.com/python/cpython/issues/145986"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145987",
"url": "https://github.com/python/cpython/pull/145987"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/"
}
],
"release_date": "2026-03-16T17:52:26.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Stack overflow parsing XML with deeply nested DTD content models"
},
{
"cve": "CVE-2026-4519",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-03-20T16:02:13.494105+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449649"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. The `webbrowser.open()` API, used to launch web browsers, does not properly sanitize input. This allows a remote attacker to craft a malicious URL containing leading dashes. When such a URL is opened, certain web browsers may interpret these dashes as command-line options, which could lead to unexpected behavior, information disclosure, or potentially arbitrary code execution, impacting the integrity of the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Command-line option injection in webbrowser.open() via crafted URLs",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4519"
},
{
"category": "external",
"summary": "RHBZ#2449649",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449649"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4519",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4519"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4519",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4519"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143930",
"url": "https://github.com/python/cpython/issues/143930"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143931",
"url": "https://github.com/python/cpython/pull/143931"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/AY5NDSS433JK56Q7Q5IS7B37QFZVVOUS/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/AY5NDSS433JK56Q7Q5IS7B37QFZVVOUS/"
}
],
"release_date": "2026-03-20T15:08:32.576000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Command-line option injection in webbrowser.open() via crafted URLs"
},
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"acknowledgments": [
{
"names": [
"Ali Raza"
]
}
],
"cve": "CVE-2026-4878",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-03-26T06:56:21.213270+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451615"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libcap. A local unprivileged user can exploit a Time-of-check-to-time-of-use (TOCTOU) race condition in the `cap_set_file()` function. This allows an attacker with write access to a parent directory to redirect file capability updates to an attacker-controlled file. By doing so, capabilities can be injected into or stripped from unintended executables, leading to privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libcap: libcap: Privilege escalation via TOCTOU race condition in cap_set_file()",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important flaw. A Time-of-Check-to-Time-of-Use (TOCTOU) race condition in libcap\u0027s cap_set_file() allows a local unprivileged user to escalate privileges. An attacker with write access to a parent directory can exploit a narrow window during file capability updates to redirect capabilities to an attacker-controlled file. This can lead to the injection of elevated privileges into an unintended executable when privileged processes, such as setcap or container tooling, invoke cap_set_file() on attacker-influenced paths.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4878"
},
{
"category": "external",
"summary": "RHBZ#2451615",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451615"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4878",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4878"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4878",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4878"
},
{
"category": "external",
"summary": "https://bugzilla.redhat.com/show_bug.cgi?id=2447554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447554"
}
],
"release_date": "2026-04-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libcap: libcap: Privilege escalation via TOCTOU race condition in cap_set_file()"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
},
{
"cve": "CVE-2026-29111",
"cwe": {
"id": "CWE-1287",
"name": "Improper Validation of Specified Type of Input"
},
"discovery_date": "2026-03-23T22:01:54.593547+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450505"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in systemd, a system and service manager. An unprivileged user can exploit this vulnerability by making an Inter-Process Communication (IPC) API call with spurious data. In older versions (v249 and earlier), this can lead to stack overwriting with attacker-controlled content, potentially enabling arbitrary code execution or privilege escalation. In newer versions (v250 and later), the flaw causes systemd to assert and freeze, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "systemd: systemd: Arbitrary code execution or Denial of Service via spurious IPC API call data",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-29111"
},
{
"category": "external",
"summary": "RHBZ#2450505",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450505"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-29111",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-29111"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-29111",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29111"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/1d22f706bd04f45f8422e17fbde3f56ece17758a",
"url": "https://github.com/systemd/systemd/commit/1d22f706bd04f45f8422e17fbde3f56ece17758a"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/20021e7686426052e3a7505425d7e12085feb2a6",
"url": "https://github.com/systemd/systemd/commit/20021e7686426052e3a7505425d7e12085feb2a6"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/21167006574d6b83813c7596759b474f56562412",
"url": "https://github.com/systemd/systemd/commit/21167006574d6b83813c7596759b474f56562412"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/3cee294fe8cf4fa0eff933ab21416d099942cabd",
"url": "https://github.com/systemd/systemd/commit/3cee294fe8cf4fa0eff933ab21416d099942cabd"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/42aee39107fbdd7db1ccd402a2151822b2805e9f",
"url": "https://github.com/systemd/systemd/commit/42aee39107fbdd7db1ccd402a2151822b2805e9f"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/54588d2dedff54bfb6036670820650e4ea74628f",
"url": "https://github.com/systemd/systemd/commit/54588d2dedff54bfb6036670820650e4ea74628f"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/7ac3220213690e8a8d6d2a6e81e43bd1dce01d69",
"url": "https://github.com/systemd/systemd/commit/7ac3220213690e8a8d6d2a6e81e43bd1dce01d69"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/80acea4ef80a4bb78560ed970c34952299b890d6",
"url": "https://github.com/systemd/systemd/commit/80acea4ef80a4bb78560ed970c34952299b890d6"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/b5fd14693057e5f2c9b4a49603be64ec3608ff6c",
"url": "https://github.com/systemd/systemd/commit/b5fd14693057e5f2c9b4a49603be64ec3608ff6c"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/commit/efa6ba2ab625aaa160ac435a09e6482fc63bdbe8",
"url": "https://github.com/systemd/systemd/commit/efa6ba2ab625aaa160ac435a09e6482fc63bdbe8"
},
{
"category": "external",
"summary": "https://github.com/systemd/systemd/security/advisories/GHSA-gx6q-6f99-m764",
"url": "https://github.com/systemd/systemd/security/advisories/GHSA-gx6q-6f99-m764"
}
],
"release_date": "2026-03-23T21:03:56.120000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "systemd: systemd: Arbitrary code execution or Denial of Service via spurious IPC API call data"
},
{
"cve": "CVE-2026-31790",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-03-25T02:59:10.179000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451094"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in openssl. Applications that use RSASVE key encapsulation, a method for securely exchanging encryption keys, may inadvertently expose sensitive data. This vulnerability arises when an application processes a malicious, invalid RSA public key provided by an attacker without proper validation. Consequently, the application might send the contents of an uninitialized memory buffer, which could contain confidential information, to the attacker.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssl: openssl: Information Disclosure from Uninitialized Memory via Invalid RSA Public Key",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Moderate impact. This flaw affects applications utilizing RSASVE key encapsulation, where an attacker-supplied invalid RSA public key is used with EVP_PKEY_encapsulate() without prior validation. This can lead to the disclosure of sensitive, uninitialized memory buffer contents to a malicious peer.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-31790"
},
{
"category": "external",
"summary": "RHBZ#2451094",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451094"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-31790",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-31790"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-31790",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-31790"
},
{
"category": "external",
"summary": "https://openssl-library.org/news/secadv/20260407.txt",
"url": "https://openssl-library.org/news/secadv/20260407.txt"
}
],
"release_date": "2026-04-07T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "openssl: openssl: Information Disclosure from Uninitialized Memory via Invalid RSA Public Key"
},
{
"cve": "CVE-2026-34982",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-04-06T16:02:10.004743+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2455400"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. A modeline is used to set specific editor options directly from a text file. However, the `complete`, `guitabtooltip`, `printheader` options and the `mapset` function lack proper security checks, allowing an attacker to bypass restrictions and cause arbitrary OS command execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: arbitrary command execution via modeline sandbox bypass",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this vulnerability, an attacker needs to convince a user to open a specially crafted file. The arbitrary OS command execution is restricted to the privileges of the user running Vim, limiting the potential of a full system 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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-34982"
},
{
"category": "external",
"summary": "RHBZ#2455400",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2455400"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-34982",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-34982"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-34982",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-34982"
},
{
"category": "external",
"summary": "http://www.openwall.com/lists/oss-security/2026/04/01/1",
"url": "http://www.openwall.com/lists/oss-security/2026/04/01/1"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/75661a66a1db1e1f3f1245c615",
"url": "https://github.com/vim/vim/commit/75661a66a1db1e1f3f1245c615"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0276",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0276"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-8h6p-m6gr-mpw9",
"url": "https://github.com/vim/vim/security/advisories/GHSA-8h6p-m6gr-mpw9"
}
],
"release_date": "2026-04-06T15:16:48.809000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable the modeline support by adding the following command to the Vim configuration file:\n\n~~~\nset nomodeline\n~~~",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vim: arbitrary command execution via modeline sandbox bypass"
},
{
"cve": "CVE-2026-35385",
"cwe": {
"id": "CWE-281",
"name": "Improper Preservation of Permissions"
},
"discovery_date": "2026-04-02T17:01:07.052864+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454469"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. When the `scp` command is used by a root user to download a file with the legacy protocol option (`-O`) and without preserving original file permissions (`-p`), the downloaded file can be installed with elevated privileges (setuid or setgid). This unexpected behavior could allow a malicious file to execute with higher permissions than intended, posing a security risk through potential privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Privilege escalation via scp legacy protocol when not preserving file mode",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35385"
},
{
"category": "external",
"summary": "RHBZ#2454469",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454469"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35385",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35385"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35385",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35385"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:30:59.615000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "OpenSSH: OpenSSH: Privilege escalation via scp legacy protocol when not preserving file mode"
},
{
"cve": "CVE-2026-35386",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-04-02T18:02:24.149353+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454506"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows a remote attacker to achieve arbitrary command execution by injecting shell metacharacters into a username provided on the command line. Exploitation requires an untrusted username and a non-default configuration of the \u0027%\u0027 character in `ssh_config`.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Arbitrary command execution via shell metacharacters in username",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat products do not ship in a configuration which is subject to this vulnerability. Additionally, the impact of the command execution is limited to the scope of the specific user account which users would need to create themselves.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35386"
},
{
"category": "external",
"summary": "RHBZ#2454506",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454506"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35386",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35386"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35386",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35386"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:44:27.806000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.6,
"baseSeverity": "LOW",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Arbitrary command execution via shell metacharacters in username"
},
{
"cve": "CVE-2026-35387",
"cwe": {
"id": "CWE-115",
"name": "Misinterpretation of Input"
},
"discovery_date": "2026-04-02T18:01:38.952994+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454494"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows the system to use unintended Elliptic Curve Digital Signature Algorithm (ECDSA) algorithms. This occurs because the configuration for accepted public key algorithms is misinterpreted, leading to the use of weaker cryptographic methods than intended. This could potentially allow an attacker to compromise the confidentiality of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Information disclosure due to unintended cryptographic algorithm usage",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The cipher choices which may be used as a result of this flaw may provide fewer bits of security than those configured by the user, however they are all still considered cryptographically secure. Users who work in regulated environments may however find themselves using ciphers which are not approved in their regulatory environment.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35387"
},
{
"category": "external",
"summary": "RHBZ#2454494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35387",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35387"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35387",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35387"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:52:53.623000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 3.1,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Information disclosure due to unintended cryptographic algorithm usage"
},
{
"cve": "CVE-2026-35388",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-04-02T18:02:01.536010+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454500"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows for a low integrity impact due to the omission of connection multiplexing confirmation for proxy-mode multiplexing sessions. A local user, under specific and complex conditions requiring user interaction, could potentially establish a multiplexed session without explicit confirmation, leading to unintended data handling.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Low integrity impact from unconfirmed proxy-mode multiplexing sessions",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35388"
},
{
"category": "external",
"summary": "RHBZ#2454500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35388",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35388"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35388",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35388"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:57:31.073000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 2.2,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Low integrity impact from unconfirmed proxy-mode multiplexing sessions"
},
{
"cve": "CVE-2026-35414",
"cwe": {
"id": "CWE-168",
"name": "Improper Handling of Inconsistent Special Elements"
},
"discovery_date": "2026-04-02T18:01:25.983089+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454490"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability arises from the incorrect handling of the authorized_keys principals option in uncommon scenarios. Specifically, when a principals list is used with a Certificate Authority that includes comma characters, OpenSSH may misinterpret the input. This could lead to security bypasses, potentially allowing unintended access or information disclosure in specific authentication contexts.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Security bypass via mishandling of authorized_keys principals option",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this flaw to Red Hat products is limited. The use of SSH certificates is not enabled by default and requires that users opt-in to the feature. Further, when following documented guidance ssh connections should only be permitted to non-root users which will limit the impact of this flaw.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35414"
},
{
"category": "external",
"summary": "RHBZ#2454490",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454490"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35414",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35414"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35414",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35414"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T17:08:15.628000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "OpenSSH: OpenSSH: Security bypass via mishandling of authorized_keys principals option"
},
{
"cve": "CVE-2026-35535",
"cwe": {
"id": "CWE-272",
"name": "Least Privilege Violation"
},
"discovery_date": "2026-04-03T03:01:03.124541+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454714"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Sudo. A local user could exploit a failure in the setuid, setgid, or setgroups calls, which are used to drop privileges before running the mailer. This oversight allows for privilege escalation, enabling the user to gain elevated access on the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "sudo: Sudo: Privilege escalation due to failure in privilege drop calls",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35535"
},
{
"category": "external",
"summary": "RHBZ#2454714",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454714"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35535",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35535"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35535",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35535"
},
{
"category": "external",
"summary": "https://bugs.debian.org/1130593",
"url": "https://bugs.debian.org/1130593"
},
{
"category": "external",
"summary": "https://bugs.launchpad.net/ubuntu/+source/sudo/+bug/2143042",
"url": "https://bugs.launchpad.net/ubuntu/+source/sudo/+bug/2143042"
},
{
"category": "external",
"summary": "https://github.com/sudo-project/sudo/commit/3e474c2f201484be83d994ae10a4e20e8c81bb69",
"url": "https://github.com/sudo-project/sudo/commit/3e474c2f201484be83d994ae10a4e20e8c81bb69"
},
{
"category": "external",
"summary": "https://www.qualys.com/2026/03/10/crack-armor.txt",
"url": "https://www.qualys.com/2026/03/10/crack-armor.txt"
}
],
"release_date": "2026-04-03T02:21:33.584000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.4,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "sudo: Sudo: Privilege escalation due to failure in privilege drop calls"
},
{
"cve": "CVE-2026-40355",
"cwe": {
"id": "CWE-476",
"name": "NULL Pointer Dereference"
},
"discovery_date": "2026-04-28T07:01:45.120520+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463370"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in MIT Kerberos 5 (krb5). An unauthenticated remote attacker can exploit a NULL pointer dereference vulnerability by calling `gss_accept_sec_context()` on a system with a NegoEx mechanism registered. This can lead to the termination of the process, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "krb5: MIT Kerberos 5: Denial of Service via NULL pointer dereference in NegoEx mechanism",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Moderate: This flaw allows an unauthenticated remote attacker to cause a Denial of Service in MIT Kerberos 5 by triggering a NULL pointer dereference. Exploitation requires the NegoEx mechanism to be explicitly registered in the system\u0027s GSSAPI configuration, which is not a default state in all Red Hat environments.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40355"
},
{
"category": "external",
"summary": "RHBZ#2463370",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463370"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40355",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40355"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40355",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40355"
},
{
"category": "external",
"summary": "https://cems.fun/2026/04/27/krb5-two-unauthenticated-network-vulnerabilities.html",
"url": "https://cems.fun/2026/04/27/krb5-two-unauthenticated-network-vulnerabilities.html"
},
{
"category": "external",
"summary": "https://github.com/krb5/krb5/commit/2e75f0d9362fb979f5fc92829431a590a130929f",
"url": "https://github.com/krb5/krb5/commit/2e75f0d9362fb979f5fc92829431a590a130929f"
},
{
"category": "external",
"summary": "https://web.mit.edu/kerberos/advisories/",
"url": "https://web.mit.edu/kerberos/advisories/"
}
],
"release_date": "2026-04-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "To mitigate this issue, remove the NegoEx mechanism registration from the system\u0027s GSSAPI configuration if it is not required. This can typically be achieved by removing or commenting out the relevant entry in `/etc/gss/mech`. A restart of services utilizing Kerberos might be necessary for the changes to take effect, which could impact Kerberos-dependent functionality.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "krb5: MIT Kerberos 5: Denial of Service via NULL pointer dereference in NegoEx mechanism"
},
{
"cve": "CVE-2026-40356",
"cwe": {
"id": "CWE-191",
"name": "Integer Underflow (Wrap or Wraparound)"
},
"discovery_date": "2026-04-28T07:01:37.543641+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2463368"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in MIT Kerberos 5 (krb5). An unauthenticated remote attacker can exploit an integer underflow and an out-of-bounds read vulnerability by calling `gss_accept_sec_context()` on a system with a NegoEx mechanism registered. This can lead to the process terminating, resulting in a Denial of Service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "krb5: MIT Kerberos 5 (krb5): Denial of Service via integer underflow and out-of-bounds read",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This Moderate impact denial of service flaw in MIT Kerberos 5 (krb5) allows an unauthenticated remote attacker to trigger an integer underflow and out-of-bounds read. This vulnerability, which can lead to process termination, specifically affects systems where the NegoEx mechanism is registered and `gss_accept_sec_context()` is called. While Kerberos is a fundamental service, the prerequisite of a registered NegoEx mechanism limits the attack surface.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40356"
},
{
"category": "external",
"summary": "RHBZ#2463368",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2463368"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40356",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40356"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40356",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40356"
},
{
"category": "external",
"summary": "https://cems.fun/2026/04/27/krb5-two-unauthenticated-network-vulnerabilities.html",
"url": "https://cems.fun/2026/04/27/krb5-two-unauthenticated-network-vulnerabilities.html"
},
{
"category": "external",
"summary": "https://github.com/krb5/krb5/commit/2e75f0d9362fb979f5fc92829431a590a130929f",
"url": "https://github.com/krb5/krb5/commit/2e75f0d9362fb979f5fc92829431a590a130929f"
},
{
"category": "external",
"summary": "https://web.mit.edu/kerberos/advisories/",
"url": "https://web.mit.edu/kerberos/advisories/"
}
],
"release_date": "2026-04-28T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
},
{
"category": "workaround",
"details": "To mitigate this issue, ensure that the NegoEx mechanism is not registered in the `/etc/gss/mech` configuration file. Removing the corresponding entry from this file will prevent the vulnerable code path from being activated. This action may impact services that rely on the NegoEx GSS-API mechanism. A restart of affected Kerberos-dependent services may be required for the change to take effect.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "krb5: MIT Kerberos 5 (krb5): Denial of Service via integer underflow and out-of-bounds read"
},
{
"cve": "CVE-2026-42945",
"cwe": {
"id": "CWE-131",
"name": "Incorrect Calculation of Buffer Size"
},
"discovery_date": "2026-05-13T16:04:29.017257+00:00",
"flags": [
{
"label": "vulnerable_code_not_present",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64"
]
}
],
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2477116"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in NGINX, specifically within the ngx_http_rewrite_module. An unauthenticated attacker can exploit this vulnerability by sending crafted HTTP requests under specific rewrite configurations. This can lead to a heap buffer overflow in the NGINX worker process, which may result in arbitrary code execution if Address Space Layout Randomization (ASLR), a security technique to prevent exploitation, is disabled. Otherwise, this flaw causes a denial of service due to a restart of the NGINX worker process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nginx: NGINX: Arbitrary Code Execution Vulnerability",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Critical: This flaw in NGINX\u0027s ngx_http_rewrite_module can lead to arbitrary code execution due to a heap buffer overflow if Address Space Layout Randomization (ASLR) is disabled, or a denial of service otherwise. Exploitation requires specific, non-default NGINX rewrite configurations involving unnamed PCRE captures and a question mark in the replacement string.",
"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": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"known_not_affected": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-42945"
},
{
"category": "external",
"summary": "RHBZ#2477116",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2477116"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-42945",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-42945"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-42945",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-42945"
},
{
"category": "external",
"summary": "https://depthfirst.com/nginx-rift",
"url": "https://depthfirst.com/nginx-rift"
},
{
"category": "external",
"summary": "https://my.f5.com/manage/s/article/K000161019",
"url": "https://my.f5.com/manage/s/article/K000161019"
}
],
"release_date": "2026-05-13T14:12:43.971000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-27T07:45:38+00:00",
"details": "The container images provided by this release, apart from the installer, should be deployed using rhui-installer utility.\nSee the official documentation for more details.",
"product_ids": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21275"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/cds-rhel9@sha256:29229a9b1908d9586aa60ae96ea4cab29316c058665ea4e10bd7d88e3434f38a_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/haproxy-rhel9@sha256:eeceb83a297bdb2778a63fa0e55d441ba316b77be786280746348fdcdeae866d_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/installer-rhel9@sha256:fb8d5c681efa515095f164334fde48bb2c4160069ba7512ddbf16a865c65ae17_amd64",
"Red Hat Update Infrastructure 5:registry.redhat.io/rhui5/rhua-rhel9@sha256:ae3724c290b6e0c536cadae4dbe38fc1241fb88520db381e04bfbd1e489989e8_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Critical"
}
],
"title": "nginx: NGINX: Arbitrary Code Execution Vulnerability"
}
]
}
RHSA-2026:21682
Vulnerability from csaf_redhat - Published: 2026-05-28 07:32 - Updated: 2026-06-16 21:37A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for python3.9 is now available for Red Hat Enterprise Linux 9.4 Update Services for SAP Solutions.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Python is an interpreted, interactive, object-oriented programming language, which includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems.\n\nSecurity Fix(es):\n\n* python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules (CVE-2026-6100)\n\n* python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API (CVE-2026-4786)\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:21682",
"url": "https://access.redhat.com/errata/RHSA-2026:21682"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_21682.json"
}
],
"title": "Red Hat Security Advisory: python3.9 security update",
"tracking": {
"current_release_date": "2026-06-16T21:37:49+00:00",
"generator": {
"date": "2026-06-16T21:37:49+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:21682",
"initial_release_date": "2026-05-28T07:32:52+00:00",
"revision_history": [
{
"date": "2026-05-28T07:32:52+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-05-28T07:32:52+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:37:49+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.4::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product": {
"name": "Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/o:redhat:rhel_eus:9.4::baseos"
}
}
},
{
"category": "product_name",
"name": "Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product": {
"name": "Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_eus:9.4::crb"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"product": {
"name": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"product_id": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-unversioned-command@3.9.18-3.el9_4.13?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.18-3.el9_4.13?arch=aarch64"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"product": {
"name": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"product_id": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.18-3.el9_4.13?arch=aarch64"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"product": {
"name": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"product_id": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.18-3.el9_4.13?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-test-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-test-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.18-3.el9_4.13?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"product": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"product_id": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.18-3.el9_4.13?arch=i686"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.18-3.el9_4.13?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"product": {
"name": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"product_id": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.18-3.el9_4.13?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-devel@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-tkinter@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debugsource@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9-debuginfo@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-libs@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-debug@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-idle@3.9.18-3.el9_4.13?arch=s390x"
}
}
},
{
"category": "product_version",
"name": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"product": {
"name": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"product_id": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3-test@3.9.18-3.el9_4.13?arch=s390x"
}
}
}
],
"category": "architecture",
"name": "s390x"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.9-0:3.9.18-3.el9_4.13.src",
"product": {
"name": "python3.9-0:3.9.18-3.el9_4.13.src",
"product_id": "python3.9-0:3.9.18-3.el9_4.13.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.9@3.9.18-3.el9_4.13?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.18-3.el9_4.13.src as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src"
},
"product_reference": "python3.9-0:3.9.18-3.el9_4.13.src",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v.9.4)",
"product_id": "AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "AppStream-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.18-3.el9_4.13.src as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src"
},
"product_reference": "python3.9-0:3.9.18-3.el9_4.13.src",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat Enterprise Linux BaseOS EUS (v.9.4)",
"product_id": "BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "BaseOS-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch"
},
"product_reference": "python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-debug-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-devel-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-idle-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-libs-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-test-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-test-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-0:3.9.18-3.el9_4.13.src as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src"
},
"product_reference": "python3.9-0:3.9.18-3.el9_4.13.src",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64 as a component of Red Hat CodeReady Linux Builder EUS (v.9.4)",
"product_id": "CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
},
"product_reference": "python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"relates_to_product_reference": "CRB-9.4.0.Z.EUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T07:32:52+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",
"product_ids": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21682"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-05-28T07:32:52+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",
"product_ids": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:21682"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"AppStream-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"BaseOS-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python-unversioned-command-0:3.9.18-3.el9_4.13.noarch",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-debug-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-devel-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-idle-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-libs-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-test-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3-tkinter-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-0:3.9.18-3.el9_4.13.src",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debuginfo-0:3.9.18-3.el9_4.13.x86_64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.aarch64",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.i686",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.ppc64le",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.s390x",
"CRB-9.4.0.Z.EUS:python3.9-debugsource-0:3.9.18-3.el9_4.13.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:25096
Vulnerability from csaf_redhat - Published: 2026-06-10 17:29 - Updated: 2026-06-17 20:22A flaw was found in libxslt package. Processing web content may disclose sensitive information. This issue was addressed with improved memory handling.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
|
A segment fault (SEGV) flaw was found in libtiff that could be triggered by passing a crafted tiff file to the TIFFReadRGBATileExt() API. This flaw allows a remote attacker to cause a heap-buffer overflow, leading to a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
|
A flaw was found in GLib (Gnome Lib). This vulnerability allows a remote attacker to cause heap corruption, leading to a denial of service or potential code execution via a buffer-underflow in the GVariant parser when processing maliciously crafted input strings.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in glib. This vulnerability allows a heap buffer overflow and denial-of-service (DoS) via an integer overflow in GLib's GIO (GLib Input/Output) escape_byte_string() function when processing malicious file or remote filesystem attribute values.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in GnuTLS. This vulnerability allows a denial of service (DoS) by excessive CPU (Central Processing Unit) and memory consumption via specially crafted malicious certificates containing a large number of name constraints and subject alternative names (SANs).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
|
A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. The `webbrowser.open()` API, used to launch web browsers, does not properly sanitize input. This allows a remote attacker to craft a malicious URL containing leading dashes. When such a URL is opened, certain web browsers may interpret these dashes as command-line options, which could lead to unexpected behavior, information disclosure, or potentially arbitrary code execution, impacting the integrity of the system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the libtiff library. A remote attacker could exploit a signed integer overflow vulnerability in the putcontig8bitYCbCr44tile function by providing a specially crafted TIFF file. This flaw can lead to an out-of-bounds heap write due to incorrect memory pointer calculations, potentially causing a denial of service (application crash) or arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libcap. A local unprivileged user can exploit a Time-of-check-to-time-of-use (TOCTOU) race condition in the `cap_set_file()` function. This allows an attacker with write access to a parent directory to redirect file capability updates to an attacker-controlled file. By doing so, capabilities can be injected into or stripped from unintended executables, leading to privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the gdk-pixbuf library. This heap-based buffer overflow vulnerability occurs in the JPEG image loader due to improper validation of color component counts when processing a specially crafted JPEG image. A remote attacker can exploit this flaw without user interaction, for example, via thumbnail generation. Successful exploitation leads to application crashes and denial of service (DoS) conditions.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in giflib. This double-free vulnerability, caused by a shallow copy in GifMakeSavedImage and incorrect error handling, may allow an attacker to corrupt memory. While difficult to trigger, successful exploitation could potentially lead to arbitrary code execution or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the 'helpfile' option. A local user could exploit this by providing a specially crafted 'helpfile' option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
|
A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Vim. By including a newline character in a pattern passed to Vim's glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user's shell settings.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
|
A flaw was found in libpng, a library used for processing PNG (Portable Network Graphics) image files. This vulnerability arises from improper memory management where a heap-allocated buffer is aliased between internal data structures. When specific functions are called, a freed memory region can still be referenced, leading to a use-after-free condition. An attacker could potentially exploit this to achieve arbitrary code execution or cause a denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in libpng. A remote attacker could exploit an out-of-bounds read and write vulnerability in the ARM/AArch64 Neon-optimized palette expansion path. This occurs when processing a final partial chunk of 8-bit paletted rows without verifying sufficient input pixels, leading to dereferencing pointers before the start of the row buffer and writing expanded pixel data to underflowed positions. This flaw can result in information disclosure and denial of service.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. When the `scp` command is used by a root user to download a file with the legacy protocol option (`-O`) and without preserving original file permissions (`-p`), the downloaded file can be installed with elevated privileges (setuid or setgid). This unexpected behavior could allow a malicious file to execute with higher permissions than intended, posing a security risk through potential privilege escalation.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows a remote attacker to achieve arbitrary command execution by injecting shell metacharacters into a username provided on the command line. Exploitation requires an untrusted username and a non-default configuration of the '%' character in `ssh_config`.
CWE-78 - Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows the system to use unintended Elliptic Curve Digital Signature Algorithm (ECDSA) algorithms. This occurs because the configuration for accepted public key algorithms is misinterpreted, leading to the use of weaker cryptographic methods than intended. This could potentially allow an attacker to compromise the confidentiality of data.
CWE-115 - Misinterpretation of Input| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. This vulnerability allows for a low integrity impact due to the omission of connection multiplexing confirmation for proxy-mode multiplexing sessions. A local user, under specific and complex conditions requiring user interaction, could potentially establish a multiplexed session without explicit confirmation, leading to unintended data handling.
CWE-306 - Missing Authentication for Critical Function| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in OpenSSH. This vulnerability arises from the incorrect handling of the authorized_keys principals option in uncommon scenarios. Specifically, when a principals list is used with a Certificate Authority that includes comma characters, OpenSSH may misinterpret the input. This could lead to security bypasses, potentially allowing unintended access or information disclosure in specific authentication contexts.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in jq, a command line JSON processor, specifically in the libjq API. Parsing a malformed JSON input from a non-NUL-terminated buffer using the `jv_parse_sized` function can cause an out-of-bounds read, resulting in an application crash and a possible memory disclosure within the error message generated by the parser.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in jq, a command-line JSON processor. A remote attacker could exploit this vulnerability by providing a specially crafted JSON object. This object leverages a weakness in jq's hashing algorithm, which uses a hardcoded, publicly known seed. By crafting the JSON object to cause hash collisions, an attacker can degrade the performance of JSON object hash table operations, leading to significant CPU exhaustion and a denial of service (DoS) for systems processing the malicious JSON data.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "Red Hat AI Inference Server Model Optimization Tools 3.2.2 (cuda) is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "Red Hat\u00ae AI Inference Server Model Optimization Tools",
"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:25096",
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2023-40403",
"url": "https://access.redhat.com/security/cve/CVE-2023-40403"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2023-52356",
"url": "https://access.redhat.com/security/cve/CVE-2023-52356"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14087",
"url": "https://access.redhat.com/security/cve/CVE-2025-14087"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14512",
"url": "https://access.redhat.com/security/cve/CVE-2025-14512"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-14831",
"url": "https://access.redhat.com/security/cve/CVE-2025-14831"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-23868",
"url": "https://access.redhat.com/security/cve/CVE-2026-23868"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-25749",
"url": "https://access.redhat.com/security/cve/CVE-2026-25749"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-27135",
"url": "https://access.redhat.com/security/cve/CVE-2026-27135"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-28417",
"url": "https://access.redhat.com/security/cve/CVE-2026-28417"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-28421",
"url": "https://access.redhat.com/security/cve/CVE-2026-28421"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33412",
"url": "https://access.redhat.com/security/cve/CVE-2026-33412"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33416",
"url": "https://access.redhat.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-33636",
"url": "https://access.redhat.com/security/cve/CVE-2026-33636"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-3497",
"url": "https://access.redhat.com/security/cve/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35385",
"url": "https://access.redhat.com/security/cve/CVE-2026-35385"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35386",
"url": "https://access.redhat.com/security/cve/CVE-2026-35386"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35387",
"url": "https://access.redhat.com/security/cve/CVE-2026-35387"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35388",
"url": "https://access.redhat.com/security/cve/CVE-2026-35388"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-35414",
"url": "https://access.redhat.com/security/cve/CVE-2026-35414"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-39979",
"url": "https://access.redhat.com/security/cve/CVE-2026-39979"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-40164",
"url": "https://access.redhat.com/security/cve/CVE-2026-40164"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4111",
"url": "https://access.redhat.com/security/cve/CVE-2026-4111"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4424",
"url": "https://access.redhat.com/security/cve/CVE-2026-4424"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4519",
"url": "https://access.redhat.com/security/cve/CVE-2026-4519"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4775",
"url": "https://access.redhat.com/security/cve/CVE-2026-4775"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4786",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4878",
"url": "https://access.redhat.com/security/cve/CVE-2026-4878"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-5121",
"url": "https://access.redhat.com/security/cve/CVE-2026-5121"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-5201",
"url": "https://access.redhat.com/security/cve/CVE-2026-5201"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6100",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://www.redhat.com/en/products/ai/inference-server",
"url": "https://www.redhat.com/en/products/ai/inference-server"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_25096.json"
}
],
"title": "Red Hat Security Advisory: Red Hat AI Inference Server Model Optimization Tools 3.2.2 (cuda)",
"tracking": {
"current_release_date": "2026-06-17T20:22:29+00:00",
"generator": {
"date": "2026-06-17T20:22:29+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:25096",
"initial_release_date": "2026-06-10T17:29:51+00:00",
"revision_history": [
{
"date": "2026-06-10T17:29:51+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-10T17:30:02+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-17T20:22:29+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat AI Inference Server 3.2",
"product": {
"name": "Red Hat AI Inference Server 3.2",
"product_id": "Red Hat AI Inference Server 3.2",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:ai_inference_server:3.2::el9"
}
}
}
],
"category": "product_family",
"name": "Red Hat AI Inference Server"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64",
"product": {
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64",
"product_id": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64",
"product_identification_helper": {
"purl": "pkg:oci/model-opt-cuda-rhel9@sha256%3A66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53?arch=amd64\u0026repository_url=registry.redhat.io/rhaiis/model-opt-cuda-rhel9\u0026tag=1780681984"
}
}
}
],
"category": "architecture",
"name": "amd64"
},
{
"branches": [
{
"category": "product_version",
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"product": {
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"product_id": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"product_identification_helper": {
"purl": "pkg:oci/model-opt-cuda-rhel9@sha256%3A20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00?arch=arm64\u0026repository_url=registry.redhat.io/rhaiis/model-opt-cuda-rhel9\u0026tag=1780681984"
}
}
}
],
"category": "architecture",
"name": "arm64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64 as a component of Red Hat AI Inference Server 3.2",
"product_id": "Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64"
},
"product_reference": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"relates_to_product_reference": "Red Hat AI Inference Server 3.2"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64 as a component of Red Hat AI Inference Server 3.2",
"product_id": "Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
},
"product_reference": "registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64",
"relates_to_product_reference": "Red Hat AI Inference Server 3.2"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2023-40403",
"cwe": {
"id": "CWE-200",
"name": "Exposure of Sensitive Information to an Unauthorized Actor"
},
"discovery_date": "2025-03-04T12:01:50.826520+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2349766"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libxslt package. Processing web content may disclose sensitive information. This issue was addressed with improved memory handling.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libxslt: Processing web content may disclose sensitive information",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This CVE is a duplicate of CVE-2022-4909.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-40403"
},
{
"category": "external",
"summary": "RHBZ#2349766",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2349766"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-40403",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-40403"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-40403",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-40403"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/10",
"url": "http://seclists.org/fulldisclosure/2023/Oct/10"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/3",
"url": "http://seclists.org/fulldisclosure/2023/Oct/3"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/4",
"url": "http://seclists.org/fulldisclosure/2023/Oct/4"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/5",
"url": "http://seclists.org/fulldisclosure/2023/Oct/5"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/6",
"url": "http://seclists.org/fulldisclosure/2023/Oct/6"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/8",
"url": "http://seclists.org/fulldisclosure/2023/Oct/8"
},
{
"category": "external",
"summary": "http://seclists.org/fulldisclosure/2023/Oct/9",
"url": "http://seclists.org/fulldisclosure/2023/Oct/9"
},
{
"category": "external",
"summary": "https://bugs.chromium.org/p/chromium/issues/detail?id=1356211",
"url": "https://bugs.chromium.org/p/chromium/issues/detail?id=1356211"
},
{
"category": "external",
"summary": "https://bugzilla.gnome.org/show_bug.cgi?id=751621",
"url": "https://bugzilla.gnome.org/show_bug.cgi?id=751621"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/libxslt/-/issues/94",
"url": "https://gitlab.gnome.org/GNOME/libxslt/-/issues/94"
},
{
"category": "external",
"summary": "https://support.apple.com/en-us/HT213927",
"url": "https://support.apple.com/en-us/HT213927"
}
],
"release_date": "2023-09-26T20:14:54.697000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libxslt: Processing web content may disclose sensitive information"
},
{
"cve": "CVE-2023-52356",
"cwe": {
"id": "CWE-122",
"name": "Heap-based Buffer Overflow"
},
"discovery_date": "2023-11-24T00:00:00+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2251344"
}
],
"notes": [
{
"category": "description",
"text": "A segment fault (SEGV) flaw was found in libtiff that could be triggered by passing a crafted tiff file to the TIFFReadRGBATileExt() API. This flaw allows a remote attacker to cause a heap-buffer overflow, leading to a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libtiff: Segment fault in libtiff in TIFFReadRGBATileExt() leading to denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The flaw allows an attacker to potentially cause a denial of service attack by crashing a program, but the impact is minimal.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2023-52356"
},
{
"category": "external",
"summary": "RHBZ#2251344",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2251344"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2023-52356",
"url": "https://www.cve.org/CVERecord?id=CVE-2023-52356"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2023-52356",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2023-52356"
},
{
"category": "external",
"summary": "https://gitlab.com/libtiff/libtiff/-/issues/622",
"url": "https://gitlab.com/libtiff/libtiff/-/issues/622"
},
{
"category": "external",
"summary": "https://gitlab.com/libtiff/libtiff/-/merge_requests/546",
"url": "https://gitlab.com/libtiff/libtiff/-/merge_requests/546"
}
],
"release_date": "2023-11-03T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libtiff: Segment fault in libtiff in TIFFReadRGBATileExt() leading to denial of service"
},
{
"acknowledgments": [
{
"names": [
"Sovereign Tech Resilience program"
],
"organization": "Sovereign Tech Agency"
},
{
"names": [
"treeplus"
]
}
],
"cve": "CVE-2025-14087",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2025-12-05T08:35:24.744000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2419093"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GLib (Gnome Lib). This vulnerability allows a remote attacker to cause heap corruption, leading to a denial of service or potential code execution via a buffer-underflow in the GVariant parser when processing maliciously crafted input strings.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "glib: GLib: Buffer underflow in GVariant parser leads to heap corruption",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The highest threat is to system availability due to potential application crashes when processing maliciously crafted input strings through GLib\u0027s GVariant parser. This issue affects applications that utilize g_variant_parse() on untrusted data, leading to memory corruption and possible denial of service.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14087"
},
{
"category": "external",
"summary": "RHBZ#2419093",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2419093"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14087",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14087"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14087",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14087"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/glib/-/issues/3834",
"url": "https://gitlab.gnome.org/GNOME/glib/-/issues/3834"
}
],
"release_date": "2025-12-05T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.6,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "glib: GLib: Buffer underflow in GVariant parser leads to heap corruption"
},
{
"acknowledgments": [
{
"names": [
"Codean Labs"
]
}
],
"cve": "CVE-2025-14512",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2025-12-11T06:22:59.701000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2421339"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in glib. This vulnerability allows a heap buffer overflow and denial-of-service (DoS) via an integer overflow in GLib\u0027s GIO (GLib Input/Output) escape_byte_string() function when processing malicious file or remote filesystem attribute values.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "glib: Integer Overflow in GLib GIO Attribute Escaping Causes Heap Buffer Overflow",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat products because an integer overflow in GLib\u0027s GIO `escape_byte_string()` function can lead to a heap buffer overflow and denial-of-service. This occurs when processing specially crafted file or remote filesystem attribute values, requiring an attacker to provide malicious input.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14512"
},
{
"category": "external",
"summary": "RHBZ#2421339",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2421339"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14512",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14512"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14512",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14512"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/glib/-/issues/3845",
"url": "https://gitlab.gnome.org/GNOME/glib/-/issues/3845"
}
],
"release_date": "2025-12-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "glib: Integer Overflow in GLib GIO Attribute Escaping Causes Heap Buffer Overflow"
},
{
"cve": "CVE-2025-14831",
"cwe": {
"id": "CWE-407",
"name": "Inefficient Algorithmic Complexity"
},
"discovery_date": "2025-12-17T14:48:30.222000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2423177"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in GnuTLS. This vulnerability allows a denial of service (DoS) by excessive CPU (Central Processing Unit) and memory consumption via specially crafted malicious certificates containing a large number of name constraints and subject alternative names (SANs).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "gnutls: GnuTLS: Denial of Service via excessive resource consumption during certificate verification",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Moderate for Red Hat. GnuTLS is susceptible to a denial of service attack due to excessive CPU and memory consumption. This occurs when processing specially crafted malicious certificates containing a large number of name constraints and subject alternative names (SANs) during certificate verification.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-14831"
},
{
"category": "external",
"summary": "RHBZ#2423177",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2423177"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-14831",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-14831"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-14831",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-14831"
},
{
"category": "external",
"summary": "https://gitlab.com/gnutls/gnutls/-/issues/1773",
"url": "https://gitlab.com/gnutls/gnutls/-/issues/1773"
}
],
"release_date": "2026-02-09T14:26:34.939000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "gnutls: GnuTLS: Denial of Service via excessive resource consumption during certificate verification"
},
{
"cve": "CVE-2026-3497",
"cwe": {
"id": "CWE-824",
"name": "Access of Uninitialized Pointer"
},
"discovery_date": "2026-03-12T19:01:37.007806+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2447085"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the OpenSSH GSSAPI (Generic Security Service Application Program Interface) delta patches, as included in various Linux distributions. A remote attacker could exploit this by sending an unexpected GSSAPI message type during the key exchange process. This occurs because the `sshpkt_disconnect()` function, when called on an error, does not properly terminate the process, leading to the continued execution of the program with uninitialized connection variables. Accessing these uninitialized variables can lead to undefined behavior, potentially resulting in information disclosure or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This vulnerability affects the OpenSSH GSSAPI delta as implemented in Red Hat Enterprise Linux and OpenShift Container Platform. An unauthenticated attacker could send a specially crafted GSSAPI message during key exchange, leading to the use of uninitialized variables and potentially undefined behavior. The severity of the impact is dependent on compiler hardening configurations.",
"title": "Statement"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3497"
},
{
"category": "external",
"summary": "RHBZ#2447085",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447085"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3497",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3497"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://ubuntu.com/security/CVE-2026-3497",
"url": "https://ubuntu.com/security/CVE-2026-3497"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/03/12/3",
"url": "https://www.openwall.com/lists/oss-security/2026/03/12/3"
}
],
"release_date": "2026-03-12T18:27:44.917000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To mitigate this issue, disable GSSAPI key exchange in the OpenSSH server configuration. This prevents the server from processing GSSAPI messages, eliminating the vulnerability\u0027s attack surface.\n\nEdit `/etc/ssh/sshd_config` and add or modify the line:\n```\nGSSAPIKeyExchange no\n```\n\nAfter saving the changes, restart the `sshd` service for the mitigation to take effect. This action will prevent users from authenticating via GSSAPI.\n\n```\n# systemctl restart sshd\n```",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "openssh: OpenSSH GSSAPI: Information disclosure or denial of service due to uninitialized variables"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4111",
"cwe": {
"id": "CWE-835",
"name": "Loop with Unreachable Exit Condition (\u0027Infinite Loop\u0027)"
},
"discovery_date": "2026-03-11T11:18:51.609000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446453"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was identified in the RAR5 archive decompression logic of the libarchive library, specifically within the archive_read_data() processing path. When a specially crafted RAR5 archive is processed, the decompression routine may enter a state where internal logic prevents forward progress. This condition results in an infinite loop that continuously consumes CPU resources. Because the archive passes checksum validation and appears structurally valid, affected applications cannot detect the issue before processing. This can allow attackers to cause persistent denial-of-service conditions in services that automatically process archives.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The Red Hat Product Security team would likely assess the severity of this vulnerability as High because it allows remote attackers to cause a persistent denial-of-service condition using a small crafted archive file. Successful exploitation requires no authentication, no special configuration, and no user interaction in environments that automatically process uploaded archives. By repeatedly submitting malicious archives, an attacker can exhaust CPU resources or worker threads in services such as file upload systems, CI/CD pipelines, mail scanners, and content indexing services that rely on libarchive for archive extraction.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4111"
},
{
"category": "external",
"summary": "RHBZ#2446453",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446453"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4111",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4111"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4111"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2877",
"url": "https://github.com/libarchive/libarchive/pull/2877"
}
],
"release_date": "2026-03-11T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options don\u0027t meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: Infinite Loop Denial of Service in RAR5 Decompression via archive_read_data() in libarchive"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-4424",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-03-19T12:22:21.740000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449006"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. This heap out-of-bounds read vulnerability exists in the RAR archive processing logic due to improper validation of the LZSS sliding window size after transitions between compression methods. A remote attacker can exploit this by providing a specially crafted RAR archive, leading to the disclosure of sensitive heap memory information without requiring authentication or user interaction.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "IMPORTANT: This heap out-of-bounds read vulnerability in libarchive\u0027s RAR archive processing logic can lead to information disclosure. A remote attacker can exploit this flaw by providing a specially crafted RAR archive, potentially revealing sensitive heap memory information without requiring authentication or user interaction on systems that process untrusted archives.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4424"
},
{
"category": "external",
"summary": "RHBZ#2449006",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449006"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4424",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4424"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4424"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2898",
"url": "https://github.com/libarchive/libarchive/pull/2898"
}
],
"release_date": "2026-03-19T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libarchive: libarchive: Information disclosure via heap out-of-bounds read in RAR archive processing"
},
{
"cve": "CVE-2026-4519",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-03-20T16:02:13.494105+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2449649"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. The `webbrowser.open()` API, used to launch web browsers, does not properly sanitize input. This allows a remote attacker to craft a malicious URL containing leading dashes. When such a URL is opened, certain web browsers may interpret these dashes as command-line options, which could lead to unexpected behavior, information disclosure, or potentially arbitrary code execution, impacting the integrity of the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Command-line option injection in webbrowser.open() via crafted URLs",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4519"
},
{
"category": "external",
"summary": "RHBZ#2449649",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2449649"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4519",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4519"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4519",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4519"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143930",
"url": "https://github.com/python/cpython/issues/143930"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143931",
"url": "https://github.com/python/cpython/pull/143931"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/AY5NDSS433JK56Q7Q5IS7B37QFZVVOUS/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/AY5NDSS433JK56Q7Q5IS7B37QFZVVOUS/"
}
],
"release_date": "2026-03-20T15:08:32.576000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Command-line option injection in webbrowser.open() via crafted URLs"
},
{
"acknowledgments": [
{
"names": [
"Quang Luong",
"PrymEvol"
]
}
],
"cve": "CVE-2026-4775",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-03-24T14:23:23.826000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450768"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the libtiff library. A remote attacker could exploit a signed integer overflow vulnerability in the putcontig8bitYCbCr44tile function by providing a specially crafted TIFF file. This flaw can lead to an out-of-bounds heap write due to incorrect memory pointer calculations, potentially causing a denial of service (application crash) or arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libtiff: libtiff: Arbitrary code execution or denial of service via signed integer overflow in TIFF file processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "A flaw in the libtiff library, affecting the processing of specially crafted TIFF files, could lead to a denial of service or potentially arbitrary code execution. This vulnerability, caused by a signed integer overflow during TIFF image processing, results in an out-of-bounds heap write. Red Hat products that process untrusted TIFF files using libtiff may be impacted.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4775"
},
{
"category": "external",
"summary": "RHBZ#2450768",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450768"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4775",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4775"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4775",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4775"
}
],
"release_date": "2026-03-24T14:33:35.730000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted or maliciously crafted TIFF files with applications linked against the libtiff library. If processing untrusted TIFF files is unavoidable, consider running the affected applications within a sandboxed environment to limit the potential impact of successful exploitation. This operational control helps contain the effects of an out-of-bounds write, reducing the risk of denial of service or arbitrary code execution.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.8,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libtiff: libtiff: Arbitrary code execution or denial of service via signed integer overflow in TIFF file processing"
},
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"acknowledgments": [
{
"names": [
"Ali Raza"
]
}
],
"cve": "CVE-2026-4878",
"cwe": {
"id": "CWE-367",
"name": "Time-of-check Time-of-use (TOCTOU) Race Condition"
},
"discovery_date": "2026-03-26T06:56:21.213270+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451615"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libcap. A local unprivileged user can exploit a Time-of-check-to-time-of-use (TOCTOU) race condition in the `cap_set_file()` function. This allows an attacker with write access to a parent directory to redirect file capability updates to an attacker-controlled file. By doing so, capabilities can be injected into or stripped from unintended executables, leading to privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libcap: libcap: Privilege escalation via TOCTOU race condition in cap_set_file()",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This is an Important flaw. A Time-of-Check-to-Time-of-Use (TOCTOU) race condition in libcap\u0027s cap_set_file() allows a local unprivileged user to escalate privileges. An attacker with write access to a parent directory can exploit a narrow window during file capability updates to redirect capabilities to an attacker-controlled file. This can lead to the injection of elevated privileges into an unintended executable when privileged processes, such as setcap or container tooling, invoke cap_set_file() on attacker-influenced paths.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4878"
},
{
"category": "external",
"summary": "RHBZ#2451615",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451615"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4878",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4878"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4878",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4878"
},
{
"category": "external",
"summary": "https://bugzilla.redhat.com/show_bug.cgi?id=2447554",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2447554"
}
],
"release_date": "2026-04-06T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 6.7,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "libcap: libcap: Privilege escalation via TOCTOU race condition in cap_set_file()"
},
{
"acknowledgments": [
{
"names": [
"Elhanan Haenel"
]
}
],
"cve": "CVE-2026-5121",
"cwe": {
"id": "CWE-190",
"name": "Integer Overflow or Wraparound"
},
"discovery_date": "2026-03-30T07:40:25.358335+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2452945"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libarchive. On 32-bit systems, an integer overflow vulnerability exists in the zisofs block pointer allocation logic. A remote attacker can exploit this by providing a specially crafted ISO9660 image, which can lead to a heap buffer overflow. This could potentially allow for arbitrary code execution on the affected system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Important: An integer overflow flaw in `libarchive` on 32-bit systems can lead to a heap buffer overflow. This vulnerability occurs when processing a specially crafted ISO9660 image, allowing an attacker to potentially execute arbitrary code. Red Hat Enterprise Linux 64-bit systems are not affected by this flaw.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5121"
},
{
"category": "external",
"summary": "RHBZ#2452945",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2452945"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5121",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5121"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5121"
},
{
"category": "external",
"summary": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc",
"url": "https://github.com/advisories/GHSA-2vwv-vqpv-v8vc"
},
{
"category": "external",
"summary": "https://github.com/libarchive/libarchive/pull/2934",
"url": "https://github.com/libarchive/libarchive/pull/2934"
}
],
"release_date": "2026-03-30T07:44:15.222000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To mitigate this issue, avoid processing untrusted ISO9660 images with applications that utilize `libarchive`. Users should only extract or read content from ISO images obtained from trusted sources.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libarchive: libarchive: Arbitrary code execution via integer overflow in ISO9660 image processing"
},
{
"acknowledgments": [
{
"names": [
"Ka\u011fan \u00c7apar"
]
}
],
"cve": "CVE-2026-5201",
"cwe": {
"id": "CWE-122",
"name": "Heap-based Buffer Overflow"
},
"discovery_date": "2026-03-31T07:17:23.696000+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2453291"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the gdk-pixbuf library. This heap-based buffer overflow vulnerability occurs in the JPEG image loader due to improper validation of color component counts when processing a specially crafted JPEG image. A remote attacker can exploit this flaw without user interaction, for example, via thumbnail generation. Successful exploitation leads to application crashes and denial of service (DoS) conditions.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "gdk-pixbuf: gdk-pixbuf: Denial of Service via heap-based buffer overflow when processing a specially crafted JPEG image",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "An Important heap-based buffer overflow flaw exists in the `gdk-pixbuf` library\u0027s JPEG image loader. This vulnerability can be triggered automatically without user interaction when processing a specially crafted JPEG image, such as during thumbnail generation. Successful exploitation leads to application crashes and denial-of-service conditions in applications utilizing `gdk-pixbuf` for image handling.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5201"
},
{
"category": "external",
"summary": "RHBZ#2453291",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2453291"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5201",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5201"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5201",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5201"
},
{
"category": "external",
"summary": "https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/issues/304",
"url": "https://gitlab.gnome.org/GNOME/gdk-pixbuf/-/issues/304"
}
],
"release_date": "2026-03-31T00:00:00+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To reduce the risk of exploitation, avoid opening or processing untrusted JPEG image files. This operational control helps prevent the automatic triggering of the vulnerability, for example, during thumbnail generation, which could otherwise lead to application instability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "gdk-pixbuf: gdk-pixbuf: Denial of Service via heap-based buffer overflow when processing a specially crafted JPEG image"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
},
{
"cve": "CVE-2026-23868",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-03-10T20:01:10.215637+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2446207"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in giflib. This double-free vulnerability, caused by a shallow copy in GifMakeSavedImage and incorrect error handling, may allow an attacker to corrupt memory. While difficult to trigger, successful exploitation could potentially lead to arbitrary code execution or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "giflib: Giflib: Double-free vulnerability leading to memory corruption",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-23868"
},
{
"category": "external",
"summary": "RHBZ#2446207",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2446207"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-23868",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-23868"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-23868",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-23868"
},
{
"category": "external",
"summary": "https://sourceforge.net/p/giflib/code/ci/f5b7267aed3665ef025c13823e454170d031c106/tree/gifalloc.c?diff=5146815377b7395944cb683a08c43eee3f631eb7",
"url": "https://sourceforge.net/p/giflib/code/ci/f5b7267aed3665ef025c13823e454170d031c106/tree/gifalloc.c?diff=5146815377b7395944cb683a08c43eee3f631eb7"
},
{
"category": "external",
"summary": "https://www.facebook.com/security/advisories/cve-2026-23868",
"url": "https://www.facebook.com/security/advisories/cve-2026-23868"
}
],
"release_date": "2026-03-10T18:53:25.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.0,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "giflib: Giflib: Double-free vulnerability leading to memory corruption"
},
{
"cve": "CVE-2026-25749",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-09T11:08:59.061581+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2437843"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open source, command line text editor. This heap buffer overflow vulnerability exists in the tag file resolution logic when processing the \u0027helpfile\u0027 option. A local user could exploit this by providing a specially crafted \u0027helpfile\u0027 option value, leading to a heap buffer overflow. This could result in arbitrary code execution or a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This MODERATE impact vulnerability in Vim\u0027s tag file resolution logic allows a local attacker to achieve a out-of-bounds write. By providing a specially crafted `helpfile` option value a local user can trigger a heap buffer overflow, as consequence lead to memory corruption presenting a data integrity impact or leading the vim process to crash resulting in availability impact. Although being non-trivial and very complex, arbitrary code execution is not discarded as worst case scenario.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-25749"
},
{
"category": "external",
"summary": "RHBZ#2437843",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2437843"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-25749",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-25749"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-25749"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9",
"url": "https://github.com/vim/vim/commit/0714b15940b245108e6e9d7aa2260dd849a26fa9"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.1.2132",
"url": "https://github.com/vim/vim/releases/tag/v9.1.2132"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43",
"url": "https://github.com/vim/vim/security/advisories/GHSA-5w93-4g67-mm43"
}
],
"release_date": "2026-02-06T22:43:38.630000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via \u0027helpfile\u0027 option processing"
},
{
"cve": "CVE-2026-27135",
"cwe": {
"id": "CWE-617",
"name": "Reachable Assertion"
},
"discovery_date": "2026-03-18T19:02:13.823002+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448754"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in nghttp2. Due to missing internal state validation, the library continues to process incoming data even after a session has been terminated. A remote attacker could exploit this by sending a specially crafted HTTP/2 frame, leading to an assertion failure and a denial of service (DoS).",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-27135"
},
{
"category": "external",
"summary": "RHBZ#2448754",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448754"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-27135",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-27135"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-27135"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1",
"url": "https://github.com/nghttp2/nghttp2/commit/5c7df8fa815ac1004d9ecb9d1f7595c4d37f46e1"
},
{
"category": "external",
"summary": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6",
"url": "https://github.com/nghttp2/nghttp2/security/advisories/GHSA-6933-cjhr-5qg6"
}
],
"release_date": "2026-03-18T17:59:02.045000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "nghttp2: nghttp2: Denial of Service via malformed HTTP/2 frames after session termination"
},
{
"cve": "CVE-2026-28417",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-02-27T22:01:53.728412+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443455"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim, an open-source command-line text editor. Specifically, an operating system (OS) command injection vulnerability exists in the `netrw` standard plugin. A remote attacker could exploit this by tricking a user into opening a specially crafted URL, such as one using the `scp://` protocol handler. Successful exploitation allows the attacker to execute arbitrary shell commands with the same privileges as the Vim process, leading to potential system compromise.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28417"
},
{
"category": "external",
"summary": "RHBZ#2443455",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443455"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28417",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28417"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28417"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860",
"url": "https://github.com/vim/vim/commit/79348dbbc09332130f4c860"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0073",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0073"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336",
"url": "https://github.com/vim/vim/security/advisories/GHSA-m3xh-9434-g336"
}
],
"release_date": "2026-02-27T21:54:35.196000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 4.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Arbitrary code execution via OS command injection in the netrw plugin"
},
{
"cve": "CVE-2026-28421",
"cwe": {
"id": "CWE-120",
"name": "Buffer Copy without Checking Size of Input (\u0027Classic Buffer Overflow\u0027)"
},
"discovery_date": "2026-02-27T23:01:44.673504+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2443474"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. This vulnerability, a heap-buffer-overflow and a segmentation fault, exists in the swap file recovery logic. A local attacker could exploit this by providing a specially crafted swap file. This could lead to a denial of service (DoS) or potentially information disclosure.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Denial of service and information disclosure via crafted swap file",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this vulnerability is limited on Red Hat products due to user and system isolation features which are enabled by default. The impacts of this flaw will be limited by the active user\u0027s permissions and access control limits. Host systems are not at risk when following Red Hat guidelines and the root user account is not actively executing Vim.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-28421"
},
{
"category": "external",
"summary": "RHBZ#2443474",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2443474"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-28421",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-28421"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28421"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/65c1a143c331c886dc28",
"url": "https://github.com/vim/vim/commit/65c1a143c331c886dc28"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0077",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0077"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p",
"url": "https://github.com/vim/vim/security/advisories/GHSA-r2gw-2x48-jj5p"
}
],
"release_date": "2026-02-27T22:06:34.312000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 5.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "vim: Vim: Denial of service and information disclosure via crafted swap file"
},
{
"cve": "CVE-2026-33412",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-03-24T20:02:21.511965+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2450907"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Vim. By including a newline character in a pattern passed to Vim\u0027s glob() function, an attacker may be able to execute arbitrary shell commands. This command injection vulnerability allows for arbitrary code execution, depending on the user\u0027s shell settings.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "vim: Vim: Arbitrary code execution via command injection in glob() function",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33412"
},
{
"category": "external",
"summary": "RHBZ#2450907",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2450907"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33412",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33412"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33412"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a",
"url": "https://github.com/vim/vim/commit/645ed6597d1ea896c712cd7ddbb6edee79577e9a"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/releases/tag/v9.2.0202",
"url": "https://github.com/vim/vim/releases/tag/v9.2.0202"
},
{
"category": "external",
"summary": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c",
"url": "https://github.com/vim/vim/security/advisories/GHSA-w5jw-f54h-x46c"
}
],
"release_date": "2026-03-24T19:43:07.219000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 7.3,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "vim: Vim: Arbitrary code execution via command injection in glob() function"
},
{
"cve": "CVE-2026-33416",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-03-26T18:01:55.592413+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451805"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libpng, a library used for processing PNG (Portable Network Graphics) image files. This vulnerability arises from improper memory management where a heap-allocated buffer is aliased between internal data structures. When specific functions are called, a freed memory region can still be referenced, leading to a use-after-free condition. An attacker could potentially exploit this to achieve arbitrary code execution or cause a denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: libpng: Arbitrary code execution due to use-after-free vulnerability",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33416"
},
{
"category": "external",
"summary": "RHBZ#2451805",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451805"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33416",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33416"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33416",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33416"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb",
"url": "https://github.com/pnggroup/libpng/commit/23019269764e35ed8458e517f1897bd3c54820eb"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667",
"url": "https://github.com/pnggroup/libpng/commit/7ea9eea884a2328cc7fdcb3c0c00246a50d90667"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25",
"url": "https://github.com/pnggroup/libpng/commit/a3a21443ed12bfa1ef46fa0d4fb2b74a0fa34a25"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1",
"url": "https://github.com/pnggroup/libpng/commit/c1b0318b393c90679e6fa5bc1d329fd5d5012ec1"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/pull/824",
"url": "https://github.com/pnggroup/libpng/pull/824"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-m4pc-p4q3-4c7j"
}
],
"release_date": "2026-03-26T16:48:54.174000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To reduce exposure, avoid processing untrusted PNG image files with applications that utilize libpng. Restricting the source of PNG images to trusted origins can limit the attack surface.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libpng: libpng: Arbitrary code execution due to use-after-free vulnerability"
},
{
"cve": "CVE-2026-33636",
"cwe": {
"id": "CWE-124",
"name": "Buffer Underwrite (\u0027Buffer Underflow\u0027)"
},
"discovery_date": "2026-03-26T18:02:51.339603+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2451819"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in libpng. A remote attacker could exploit an out-of-bounds read and write vulnerability in the ARM/AArch64 Neon-optimized palette expansion path. This occurs when processing a final partial chunk of 8-bit paletted rows without verifying sufficient input pixels, leading to dereferencing pointers before the start of the row buffer and writing expanded pixel data to underflowed positions. This flaw can result in information disclosure and denial of service.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-33636"
},
{
"category": "external",
"summary": "RHBZ#2451819",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2451819"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-33636",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-33636"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-33636",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-33636"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/7734cda20cf1236aef60f3bbd2267c97bbb40869",
"url": "https://github.com/pnggroup/libpng/commit/7734cda20cf1236aef60f3bbd2267c97bbb40869"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/commit/aba9f18eba870d14fb52c5ba5d73451349e339c3",
"url": "https://github.com/pnggroup/libpng/commit/aba9f18eba870d14fb52c5ba5d73451349e339c3"
},
{
"category": "external",
"summary": "https://github.com/pnggroup/libpng/security/advisories/GHSA-wjr5-c57x-95m2",
"url": "https://github.com/pnggroup/libpng/security/advisories/GHSA-wjr5-c57x-95m2"
}
],
"release_date": "2026-03-26T16:51:58.289000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.6,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "libpng: libpng: Information disclosure and denial of service via out-of-bounds read/write in Neon palette expansion"
},
{
"cve": "CVE-2026-35385",
"cwe": {
"id": "CWE-281",
"name": "Improper Preservation of Permissions"
},
"discovery_date": "2026-04-02T17:01:07.052864+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454469"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. When the `scp` command is used by a root user to download a file with the legacy protocol option (`-O`) and without preserving original file permissions (`-p`), the downloaded file can be installed with elevated privileges (setuid or setgid). This unexpected behavior could allow a malicious file to execute with higher permissions than intended, posing a security risk through potential privilege escalation.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Privilege escalation via scp legacy protocol when not preserving file mode",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35385"
},
{
"category": "external",
"summary": "RHBZ#2454469",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454469"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35385",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35385"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35385",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35385"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:30:59.615000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "OpenSSH: OpenSSH: Privilege escalation via scp legacy protocol when not preserving file mode"
},
{
"cve": "CVE-2026-35386",
"cwe": {
"id": "CWE-78",
"name": "Improper Neutralization of Special Elements used in an OS Command (\u0027OS Command Injection\u0027)"
},
"discovery_date": "2026-04-02T18:02:24.149353+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454506"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows a remote attacker to achieve arbitrary command execution by injecting shell metacharacters into a username provided on the command line. Exploitation requires an untrusted username and a non-default configuration of the \u0027%\u0027 character in `ssh_config`.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Arbitrary command execution via shell metacharacters in username",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "Red Hat products do not ship in a configuration which is subject to this vulnerability. Additionally, the impact of the command execution is limited to the scope of the specific user account which users would need to create themselves.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35386"
},
{
"category": "external",
"summary": "RHBZ#2454506",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454506"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35386",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35386"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35386",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35386"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:44:27.806000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.6,
"baseSeverity": "LOW",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Arbitrary command execution via shell metacharacters in username"
},
{
"cve": "CVE-2026-35387",
"cwe": {
"id": "CWE-115",
"name": "Misinterpretation of Input"
},
"discovery_date": "2026-04-02T18:01:38.952994+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454494"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows the system to use unintended Elliptic Curve Digital Signature Algorithm (ECDSA) algorithms. This occurs because the configuration for accepted public key algorithms is misinterpreted, leading to the use of weaker cryptographic methods than intended. This could potentially allow an attacker to compromise the confidentiality of data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Information disclosure due to unintended cryptographic algorithm usage",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The cipher choices which may be used as a result of this flaw may provide fewer bits of security than those configured by the user, however they are all still considered cryptographically secure. Users who work in regulated environments may however find themselves using ciphers which are not approved in their regulatory environment.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35387"
},
{
"category": "external",
"summary": "RHBZ#2454494",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454494"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35387",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35387"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35387",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35387"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:52:53.623000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 3.1,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Information disclosure due to unintended cryptographic algorithm usage"
},
{
"cve": "CVE-2026-35388",
"cwe": {
"id": "CWE-306",
"name": "Missing Authentication for Critical Function"
},
"discovery_date": "2026-04-02T18:02:01.536010+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454500"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability allows for a low integrity impact due to the omission of connection multiplexing confirmation for proxy-mode multiplexing sessions. A local user, under specific and complex conditions requiring user interaction, could potentially establish a multiplexed session without explicit confirmation, leading to unintended data handling.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Low integrity impact from unconfirmed proxy-mode multiplexing sessions",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35388"
},
{
"category": "external",
"summary": "RHBZ#2454500",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454500"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35388",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35388"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35388",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35388"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T16:57:31.073000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 2.2,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "OpenSSH: OpenSSH: Low integrity impact from unconfirmed proxy-mode multiplexing sessions"
},
{
"cve": "CVE-2026-35414",
"cwe": {
"id": "CWE-168",
"name": "Improper Handling of Inconsistent Special Elements"
},
"discovery_date": "2026-04-02T18:01:25.983089+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2454490"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in OpenSSH. This vulnerability arises from the incorrect handling of the authorized_keys principals option in uncommon scenarios. Specifically, when a principals list is used with a Certificate Authority that includes comma characters, OpenSSH may misinterpret the input. This could lead to security bypasses, potentially allowing unintended access or information disclosure in specific authentication contexts.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "OpenSSH: OpenSSH: Security bypass via mishandling of authorized_keys principals option",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The risk posed by this flaw to Red Hat products is limited. The use of SSH certificates is not enabled by default and requires that users opt-in to the feature. Further, when following documented guidance ssh connections should only be permitted to non-root users which will limit the impact of this flaw.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-35414"
},
{
"category": "external",
"summary": "RHBZ#2454490",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2454490"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-35414",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-35414"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-35414",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-35414"
},
{
"category": "external",
"summary": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2",
"url": "https://marc.info/?l=openssh-unix-dev\u0026m=177513443901484\u0026w=2"
},
{
"category": "external",
"summary": "https://www.openssh.org/releasenotes.html#10.3p1",
"url": "https://www.openssh.org/releasenotes.html#10.3p1"
},
{
"category": "external",
"summary": "https://www.openwall.com/lists/oss-security/2026/04/02/3",
"url": "https://www.openwall.com/lists/oss-security/2026/04/02/3"
}
],
"release_date": "2026-04-02T17:08:15.628000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "OpenSSH: OpenSSH: Security bypass via mishandling of authorized_keys principals option"
},
{
"cve": "CVE-2026-39979",
"cwe": {
"id": "CWE-125",
"name": "Out-of-bounds Read"
},
"discovery_date": "2026-04-13T23:01:01.219840+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458077"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in jq, a command line JSON processor, specifically in the libjq API. Parsing a malformed JSON input from a non-NUL-terminated buffer using the `jv_parse_sized` function can cause an out-of-bounds read, resulting in an application crash and a possible memory disclosure within the error message generated by the parser.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "jq: out-of-bounds read in jv_parse_sized() on error formatting for non-NUL-terminated buffers",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this flaw, an attacker needs to supply malformed JSON from a non-NUL-terminated buffer to an application using the `jv_parse_sized` function. This allows the attacker to trigger the out-of-bounds read, causing an application crash and potentially disclosing memory with no other security impact. As this issue affects the libjq library, it is more likely to be exposed to untrusted input. Due to these reasons, this vulnerability has been rated with an important severity.",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-39979"
},
{
"category": "external",
"summary": "RHBZ#2458077",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458077"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-39979",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-39979"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-39979",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-39979"
},
{
"category": "external",
"summary": "https://github.com/jqlang/jq/commit/2f09060afab23fe9390cce7cb860b10416e1bf5f",
"url": "https://github.com/jqlang/jq/commit/2f09060afab23fe9390cce7cb860b10416e1bf5f"
},
{
"category": "external",
"summary": "https://github.com/jqlang/jq/security/advisories/GHSA-2hhh-px8h-355p",
"url": "https://github.com/jqlang/jq/security/advisories/GHSA-2hhh-px8h-355p"
}
],
"release_date": "2026-04-13T22:18:56.252000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "To mitigate this issue, manually ensure that every buffer is NUL-terminated before passing it to the \u0027jv_parse_sized\u0027 function.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.2,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "jq: out-of-bounds read in jv_parse_sized() on error formatting for non-NUL-terminated buffers"
},
{
"cve": "CVE-2026-40164",
"cwe": {
"id": "CWE-341",
"name": "Predictable from Observable State"
},
"discovery_date": "2026-04-14T00:01:04.003115+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458084"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in jq, a command-line JSON processor. A remote attacker could exploit this vulnerability by providing a specially crafted JSON object. This object leverages a weakness in jq\u0027s hashing algorithm, which uses a hardcoded, publicly known seed. By crafting the JSON object to cause hash collisions, an attacker can degrade the performance of JSON object hash table operations, leading to significant CPU exhaustion and a denial of service (DoS) for systems processing the malicious JSON data.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "jq: jq: Denial of Service via crafted JSON object causing hash collisions",
"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": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-40164"
},
{
"category": "external",
"summary": "RHBZ#2458084",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458084"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-40164",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-40164"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-40164",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-40164"
},
{
"category": "external",
"summary": "https://github.com/jqlang/jq/commit/0c7d133c3c7e37c00b6d46b658a02244fdd3c784",
"url": "https://github.com/jqlang/jq/commit/0c7d133c3c7e37c00b6d46b658a02244fdd3c784"
},
{
"category": "external",
"summary": "https://github.com/jqlang/jq/security/advisories/GHSA-wwj8-gxm6-jc29",
"url": "https://github.com/jqlang/jq/security/advisories/GHSA-wwj8-gxm6-jc29"
}
],
"release_date": "2026-04-13T23:40:12.693000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-10T17:29:51+00:00",
"details": "For more information visit https://access.redhat.com/errata/RHSA-2026:25096",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:25096"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:20ab3684a275906dab8e67c09d3b86eadb6599aadf7247185a732aa4f96c0c00_arm64",
"Red Hat AI Inference Server 3.2:registry.redhat.io/rhaiis/model-opt-cuda-rhel9@sha256:66f80c8d4174118114a29773402ec00cc2f91149c7b2b19ad63910f775be7f53_amd64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "jq: jq: Denial of Service via crafted JSON object causing hash collisions"
}
]
}
RHSA-2026:26187
Vulnerability from csaf_redhat - Published: 2026-06-16 07:53 - Updated: 2026-06-16 21:38A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for python3.11 is now available for Red Hat Enterprise Linux 8.8 Update Services for SAP Solutions and Red Hat Enterprise Linux 8.8 Telecommunications Update Service.\n\nRed Hat Product Security has rated this update as having a security impact of Important. A Common Vulnerability Scoring System (CVSS) base score, which gives a detailed severity rating, is available for each vulnerability from the CVE link(s) in the References section.",
"title": "Topic"
},
{
"category": "general",
"text": "Python is an interpreted, interactive, object-oriented programming language, which includes modules, classes, exceptions, very high level dynamic data types and dynamic typing. Python supports interfaces to many system calls and libraries, as well as to various windowing systems.\n\nSecurity Fix(es):\n\n* python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules (CVE-2026-6100)\n\n* python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API (CVE-2026-4786)\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:26187",
"url": "https://access.redhat.com/errata/RHSA-2026:26187"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/#important",
"url": "https://access.redhat.com/security/updates/classification/#important"
},
{
"category": "external",
"summary": "2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_26187.json"
}
],
"title": "Red Hat Security Advisory: python3.11 security update",
"tracking": {
"current_release_date": "2026-06-16T21:38:23+00:00",
"generator": {
"date": "2026-06-16T21:38:23+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:26187",
"initial_release_date": "2026-06-16T07:53:14+00:00",
"revision_history": [
{
"date": "2026-06-16T07:53:14+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-16T07:53:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:38:23+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product": {
"name": "Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_e4s:8.8::appstream"
}
}
},
{
"category": "product_name",
"name": "Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product": {
"name": "Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:rhel_tus:8.8::appstream"
}
}
}
],
"category": "product_family",
"name": "Red Hat Enterprise Linux"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-0:3.11.2-2.el8_8.10.src",
"product": {
"name": "python3.11-0:3.11.2-2.el8_8.10.src",
"product_id": "python3.11-0:3.11.2-2.el8_8.10.src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.2-2.el8_8.10?arch=src"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-devel@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-libs@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-tkinter@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debugsource@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
},
{
"category": "product_version",
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"product": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"product_id": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debuginfo@3.11.2-2.el8_8.10?arch=ppc64le"
}
}
}
],
"category": "architecture",
"name": "ppc64le"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.2-2.el8_8.10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-devel@3.11.2-2.el8_8.10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-libs@3.11.2-2.el8_8.10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-tkinter@3.11.2-2.el8_8.10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debugsource@3.11.2-2.el8_8.10?arch=x86_64"
}
}
},
{
"category": "product_version",
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"product": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"product_id": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debuginfo@3.11.2-2.el8_8.10?arch=x86_64"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"product": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"product_id": "python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-devel@3.11.2-2.el8_8.10?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"product": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"product_id": "python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-libs@3.11.2-2.el8_8.10?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"product": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"product_id": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debugsource@3.11.2-2.el8_8.10?arch=i686"
}
}
},
{
"category": "product_version",
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"product": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"product_id": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-debuginfo@3.11.2-2.el8_8.10?arch=i686"
}
}
}
],
"category": "architecture",
"name": "i686"
},
{
"branches": [
{
"category": "product_version",
"name": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"product": {
"name": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"product_id": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11-rpm-macros@3.11.2-2.el8_8.10?arch=noarch"
}
}
}
],
"category": "architecture",
"name": "noarch"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-0:3.11.2-2.el8_8.10.src as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src"
},
"product_reference": "python3.11-0:3.11.2-2.el8_8.10.src",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch"
},
"product_reference": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le"
},
"product_reference": "python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream E4S (v.8.8)",
"product_id": "AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.E4S"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-0:3.11.2-2.el8_8.10.src as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src"
},
"product_reference": "python3.11-0:3.11.2-2.el8_8.10.src",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.i686 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686"
},
"product_reference": "python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch"
},
"product_reference": "python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64 as a component of Red Hat Enterprise Linux AppStream TUS (v.8.8)",
"product_id": "AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
},
"product_reference": "python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"relates_to_product_reference": "AppStream-8.8.0.Z.TUS"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T07:53:14+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",
"product_ids": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26187"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-06-16T07:53:14+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",
"product_ids": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:26187"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.E4S:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.E4S:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.ppc64le",
"AppStream-8.8.0.Z.E4S:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.src",
"AppStream-8.8.0.Z.TUS:python3.11-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debuginfo-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-debugsource-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-devel-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.i686",
"AppStream-8.8.0.Z.TUS:python3.11-libs-0:3.11.2-2.el8_8.10.x86_64",
"AppStream-8.8.0.Z.TUS:python3.11-rpm-macros-0:3.11.2-2.el8_8.10.noarch",
"AppStream-8.8.0.Z.TUS:python3.11-tkinter-0:3.11.2-2.el8_8.10.x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:8822
Vulnerability from csaf_redhat - Published: 2026-04-17 18:54 - Updated: 2026-06-16 21:38A vulnerability in Python’s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A zip file handling flaw has been discovered in the python standard library `zipfile` module. The 'zipfile' module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the 'zipfile' module compared to other ZIP implementations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing character filtering has been discovered in Python. When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in cpython. This vulnerability allows impacted availability via a quadratic algorithm in `xml.dom.minidom` methods, such as `appendChild()`, when building excessively nested documents due to a dependency on `_clear_id_cache()`
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the http.client module in the Python standard library. When reading an HTTP response from a server, if no read amount is specified, the default behavior will be to use Content-Length. This issue allows a malicious server to cause the client to read large amounts of data into memory, potentially causing memory allocations errors, swapping, out-of-memory conditions or even system freezes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the poplib module in the Python standard library. The poplib module does not reject control characters, such as newlines, in user-controlled input passed to POP3 commands. This issue allows an attacker to inject additional commands to be executed in the POP3 server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the email module in the Python standard library. When serializing an email message, the BytesGenerator class fails to properly quote newline characters for email headers. This issue is exploitable when the LiteralHeader class is used as it does not respect email folding rules, allowing an attacker to inject email headers and potentially modify message recipients or the email body, and spoof sender information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.
CWE-778 - Insufficient Logging| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. A malicious Python process could exploit the "profiling.sampling" module and "asyncio introspection capabilities" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-11-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for Red Hat Hardened Images RPMs is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "This update includes the following RPMs:\n\npython3.11:\n * python3.11-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-debug-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-devel-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-idle-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-libs-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-test-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-tkinter-3.11.15-4.hum1 (aarch64, x86_64)\n * python3.11-3.11.15-4.hum1.src (src)",
"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:8822",
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "external",
"summary": "https://images.redhat.com/",
"url": "https://images.redhat.com/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-5713",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1299",
"url": "https://access.redhat.com/security/cve/CVE-2026-1299"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-0865",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-6075",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13837",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13836",
"url": "https://access.redhat.com/security/cve/CVE-2025-13836"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-11468",
"url": "https://access.redhat.com/security/cve/CVE-2025-11468"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-8291",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12084",
"url": "https://access.redhat.com/security/cve/CVE-2025-12084"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15282",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4786",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4224",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-3644",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6100",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1502",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2297",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15366",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15367",
"url": "https://access.redhat.com/security/cve/CVE-2025-15367"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_8822.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update",
"tracking": {
"current_release_date": "2026-06-16T21:38:19+00:00",
"generator": {
"date": "2026-06-16T21:38:19+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:8822",
"initial_release_date": "2026-04-17T18:54:19+00:00",
"revision_history": [
{
"date": "2026-04-17T18:54:19+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-23T13:36:03+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:38:19+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Hardened Images",
"product": {
"name": "Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:hummingbird:1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Hardened Images"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-11-main@aarch64",
"product": {
"name": "python3-11-main@aarch64",
"product_id": "python3-11-main@aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.15-4.hum1?arch=aarch64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-aarch64-rpms"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-11-main@src",
"product": {
"name": "python3-11-main@src",
"product_id": "python3-11-main@src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.15-4.hum1?arch=src\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-source-rpms"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-11-main@x86_64",
"product": {
"name": "python3-11-main@x86_64",
"product_id": "python3-11-main@x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.11@3.11.15-4.hum1?arch=x86_64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-11-main@aarch64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-11-main@aarch64"
},
"product_reference": "python3-11-main@aarch64",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-11-main@src as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-11-main@src"
},
"product_reference": "python3-11-main@src",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-11-main@x86_64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-11-main@x86_64"
},
"product_reference": "python3-11-main@x86_64",
"relates_to_product_reference": "Red Hat Hardened Images"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-6075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-31T17:01:47.052517+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2408891"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in Python\u2019s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Quadratic complexity in os.path.expandvars() with user-controlled template",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low rather than Moderate because it only causes a performance inefficiency without affecting code execution, data integrity, or confidentiality. The flaw lies in the algorithmic complexity of os.path.expandvars(), which can become quadratic when processing crafted input containing repetitive or nested environment variable references. Exploitation requires the attacker to control the input string passed to this function, which is uncommon in secure applications. Moreover, the impact is limited to increased CPU utilization and potential slowdown, not system compromise or data manipulation. Since the issue does not introduce memory corruption, privilege escalation, or information disclosure risks, its overall impact scope and exploitability are minimal, justifying a Low severity rating.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "RHBZ#2408891",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2408891"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-6075",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/136065",
"url": "https://github.com/python/cpython/issues/136065"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/"
}
],
"release_date": "2025-10-31T16:41:34.983000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "python: Quadratic complexity in os.path.expandvars() with user-controlled template"
},
{
"cve": "CVE-2025-8291",
"cwe": {
"id": "CWE-130",
"name": "Improper Handling of Length Parameter Inconsistency"
},
"discovery_date": "2025-10-07T19:01:23.599055+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2402342"
}
],
"notes": [
{
"category": "description",
"text": "A zip file handling flaw has been discovered in the python standard library `zipfile` module. The \u0027zipfile\u0027 module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the \u0027zipfile\u0027 module compared to other ZIP implementations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "RHBZ#2402342",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2402342"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-8291",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8291"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267",
"url": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6",
"url": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/139700",
"url": "https://github.com/python/cpython/issues/139700"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/139702",
"url": "https://github.com/python/cpython/pull/139702"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/"
}
],
"release_date": "2025-10-07T18:10:05.908000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked"
},
{
"cve": "CVE-2025-11468",
"cwe": {
"id": "CWE-140",
"name": "Improper Neutralization of Delimiters"
},
"discovery_date": "2026-01-20T22:02:21.862077+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431375"
}
],
"notes": [
{
"category": "description",
"text": "Missing character filtering has been discovered in Python. When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Missing character filtering in Python",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-11468"
},
{
"category": "external",
"summary": "RHBZ#2431375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431375"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-11468",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11468"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-11468",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-11468"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143935",
"url": "https://github.com/python/cpython/issues/143935"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143936",
"url": "https://github.com/python/cpython/pull/143936"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/FELSEOLBI2QR6YLG6Q7VYF7FWSGQTKLI/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/FELSEOLBI2QR6YLG6Q7VYF7FWSGQTKLI/"
}
],
"release_date": "2026-01-20T21:09:11.229000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Missing character filtering in Python"
},
{
"cve": "CVE-2025-12084",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-03T19:01:03.489250+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418655"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in cpython. This vulnerability allows impacted availability via a quadratic algorithm in `xml.dom.minidom` methods, such as `appendChild()`, when building excessively nested documents due to a dependency on `_clear_id_cache()`",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: python: cpython: Quadratic algorithm in xml.dom.minidom leads to denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products as it can lead to a denial of service. The flaw exists in the `xml.dom.minidom` module of cpython, where a quadratic algorithm in methods like `appendChild()` can be triggered when processing excessively nested XML documents. When successfully exploited this may impact the availability of applications utilizing this functionality across affected Red Hat products.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12084"
},
{
"category": "external",
"summary": "RHBZ#2418655",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418655"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12084",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12084"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12084",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12084"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/142145",
"url": "https://github.com/python/cpython/issues/142145"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/142146",
"url": "https://github.com/python/cpython/pull/142146"
}
],
"release_date": "2025-12-03T18:55:32.222000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: python: cpython: Quadratic algorithm in xml.dom.minidom leads to denial of service"
},
{
"cve": "CVE-2025-13836",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-01T19:01:03.091899+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418078"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the http.client module in the Python standard library. When reading an HTTP response from a server, if no read amount is specified, the default behavior will be to use Content-Length. This issue allows a malicious server to cause the client to read large amounts of data into memory, potentially causing memory allocations errors, swapping, out-of-memory conditions or even system freezes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Excessive read buffering DoS in http.client",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploited by Python applications using the http.client.HTTPResponse.read function without the amount parameter, which specifies the read size in bytes. Note that Python libraries may use this function internally and make applications vulnerable. Additionally, vulnerable Python applications must connect to a malicious or compromised server that replies with a very large or crafted Content-Length header to trigger this issue, limiting the exposure of 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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13836"
},
{
"category": "external",
"summary": "RHBZ#2418078",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418078"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13836",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13836"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13836",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13836"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/119451",
"url": "https://github.com/python/cpython/issues/119451"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/119454",
"url": "https://github.com/python/cpython/pull/119454"
}
],
"release_date": "2025-12-01T18:02:38.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Since this vulnerability is triggered when no read amount is specified and the client defaults to using the potentially malicious Content-Length header, developers can mitigate this issue in their code by always imposing an explicit, safe limit on data reads.\n\nApplications using the http.client.HTTPResponse.read function directly can ensure that read operations specify a byte limit:\n\n~~~\n...\nmax_safe_read = 10 * 1024 * 1024\ndata = response.read(max_safe_read)\n...\n~~~",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Excessive read buffering DoS in http.client"
},
{
"cve": "CVE-2025-13837",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-01T19:01:32.492656+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418084"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Out-of-memory when loading Plist",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploited by Python applications processing malicious or untrusted Plist files, which are not typically done in Linux systems or applications. Furthermore, this flaw can cause only a denial of service with no other security impact. Due to these reasons, this vulnerability has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "RHBZ#2418084",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418084"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13837",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13837"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/119342",
"url": "https://github.com/python/cpython/issues/119342"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/119343",
"url": "https://github.com/python/cpython/pull/119343"
}
],
"release_date": "2025-12-01T18:13:32.739000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Out-of-memory when loading Plist"
},
{
"cve": "CVE-2025-15282",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:20.971828+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431366"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Header injection via newlines in data URL mediatype in Python",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "RHBZ#2431366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431366"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15282",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143925",
"url": "https://github.com/python/cpython/issues/143925"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143926",
"url": "https://github.com/python/cpython/pull/143926"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/"
}
],
"release_date": "2026-01-20T21:35:13.865000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Header injection via newlines in data URL mediatype in Python"
},
{
"cve": "CVE-2025-15366",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:33.257688+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431368"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: IMAP command injection in user-controlled commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to have the privileges required to send malicious input to an application that sends IMAP commands to a server. Additionally, this flaw can allow attackers to manipulate the state of the mailbox (e.g., delete emails, move folders, flag messages) and to potentially read metadata or specific email content, but it does not allow arbitrary code execution or OS command injection. Due to these reasons, this issue has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "external",
"summary": "RHBZ#2431368",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431368"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15366",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15366"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143921",
"url": "https://github.com/python/cpython/issues/143921"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143922",
"url": "https://github.com/python/cpython/pull/143922"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/"
}
],
"release_date": "2026-01-20T21:40:24.938000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that no data passed to the imaplib module contains newline or carriage return characters.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: IMAP command injection in user-controlled commands"
},
{
"cve": "CVE-2025-15367",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"discovery_date": "2026-01-20T22:02:09.399038+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431373"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the poplib module in the Python standard library. The poplib module does not reject control characters, such as newlines, in user-controlled input passed to POP3 commands. This issue allows an attacker to inject additional commands to be executed in the POP3 server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: POP3 command injection in user-controlled commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to have the privileges required to send malicious input to an application that sends POP3 commands to a server. Additionally, this flaw can allow attackers to manipulate the state of the mailbox (e.g., delete emails) and to potentially read metadata or specific email content, but it does not allow arbitrary code execution or OS command injection. Due to these reasons, this issue has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15367"
},
{
"category": "external",
"summary": "RHBZ#2431373",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431373"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15367",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15367"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15367",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15367"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143923",
"url": "https://github.com/python/cpython/issues/143923"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143924",
"url": "https://github.com/python/cpython/pull/143924"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/CBFBOWVGGUJFSGITQCCBZS4GEYYZ7ZNE/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/CBFBOWVGGUJFSGITQCCBZS4GEYYZ7ZNE/"
}
],
"release_date": "2026-01-20T21:47:09.885000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that no data passed to the poplib module contains newline or carriage return characters.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: POP3 command injection in user-controlled commands"
},
{
"cve": "CVE-2026-0865",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:26.694713+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431367"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: wsgiref.headers.Headers allows header newline injection in Python",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "RHBZ#2431367",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431367"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-0865",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-0865"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143916",
"url": "https://github.com/python/cpython/issues/143916"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143917",
"url": "https://github.com/python/cpython/pull/143917"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/"
}
],
"release_date": "2026-01-20T21:26:15.274000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: wsgiref.headers.Headers allows header newline injection in Python"
},
{
"cve": "CVE-2026-1299",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-23T17:02:57.343486+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2432437"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the email module in the Python standard library. When serializing an email message, the BytesGenerator class fails to properly quote newline characters for email headers. This issue is exploitable when the LiteralHeader class is used as it does not respect email folding rules, allowing an attacker to inject email headers and potentially modify message recipients or the email body, and spoof sender information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: email header injection due to unquoted newlines",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploitable by Python applications using the LiteralHeader class to write email headers, as it does not respect email folding rules. Additionally, this issue allows attackers to modify message recipients or the email body and spoof sender identity but it does not cause memory corruption or arbitrary code execution. Due to these reasons, this vulnerability has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1299"
},
{
"category": "external",
"summary": "RHBZ#2432437",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2432437"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1299",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1299"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1299",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1299"
},
{
"category": "external",
"summary": "https://cve.org/CVERecord?id=CVE-2024-6923",
"url": "https://cve.org/CVERecord?id=CVE-2024-6923"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/052e55e7d44718fe46cbba0ca995cb8fcc359413",
"url": "https://github.com/python/cpython/commit/052e55e7d44718fe46cbba0ca995cb8fcc359413"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/144125",
"url": "https://github.com/python/cpython/issues/144125"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/144126",
"url": "https://github.com/python/cpython/pull/144126"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/6ZZULGALJTITEAGEXLDJE2C6FORDXPBT/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/6ZZULGALJTITEAGEXLDJE2C6FORDXPBT/"
}
],
"release_date": "2026-01-23T16:27:13.346000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "To mitigate this issue, applications accepting user-supplied data for email headers should sanitize the input by stripping or rejecting any strings containing carriage return or line feed characters, \u0027\\r\u0027 or \u0027\\n\u0027, respectively, preventing malicious sequences that could lead to header manipulation.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: email header injection due to unquoted newlines"
},
{
"cve": "CVE-2026-1502",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-04-10T19:01:07.715197+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457409"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "RHBZ#2457409",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457409"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1502",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1502"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69",
"url": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/146211",
"url": "https://github.com/python/cpython/issues/146211"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/146212",
"url": "https://github.com/python/cpython/pull/146212"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/"
}
],
"release_date": "2026-04-10T17:54:44.121000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers"
},
{
"cve": "CVE-2026-2297",
"cwe": {
"id": "CWE-778",
"name": "Insufficient Logging"
},
"discovery_date": "2026-03-04T23:01:09.396553+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2444691"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "RHBZ#2444691",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2444691"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2297",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2297"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e",
"url": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e",
"url": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86",
"url": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145506",
"url": "https://github.com/python/cpython/issues/145506"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145507",
"url": "https://github.com/python/cpython/pull/145507"
}
],
"release_date": "2026-03-04T22:10:43.297000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling"
},
{
"cve": "CVE-2026-3644",
"cwe": {
"id": "CWE-791",
"name": "Incomplete Filtering of Special Elements"
},
"discovery_date": "2026-03-16T18:02:25.997880+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448168"
}
],
"notes": [
{
"category": "description",
"text": "A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Incomplete control character validation in http.cookies",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "RHBZ#2448168",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448168"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3644",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3644"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4",
"url": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145599",
"url": "https://github.com/python/cpython/issues/145599"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145600",
"url": "https://github.com/python/cpython/pull/145600"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/"
}
],
"release_date": "2026-03-16T17:37:31.344000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Incomplete control character validation in http.cookies"
},
{
"cve": "CVE-2026-4224",
"cwe": {
"id": "CWE-805",
"name": "Buffer Access with Incorrect Length Value"
},
"discovery_date": "2026-03-16T19:01:54.161187+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448181"
}
],
"notes": [
{
"category": "description",
"text": "A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Stack overflow parsing XML with deeply nested DTD content models",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "RHBZ#2448181",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448181"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4224",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4224"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a",
"url": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3",
"url": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768",
"url": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145986",
"url": "https://github.com/python/cpython/issues/145986"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145987",
"url": "https://github.com/python/cpython/pull/145987"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/"
}
],
"release_date": "2026-03-16T17:52:26.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Stack overflow parsing XML with deeply nested DTD content models"
},
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-5713",
"cwe": {
"id": "CWE-822",
"name": "Untrusted Pointer Dereference"
},
"discovery_date": "2026-04-14T16:01:58.710183+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458239"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. A malicious Python process could exploit the \"profiling.sampling\" module and \"asyncio introspection capabilities\" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "RHBZ#2458239",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458239"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5713",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5713"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148178",
"url": "https://github.com/python/cpython/issues/148178"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148187",
"url": "https://github.com/python/cpython/pull/148187"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/"
}
],
"release_date": "2026-04-14T15:11:51.122000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 6.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process."
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T18:54:19+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8822"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-11-main@aarch64",
"Red Hat Hardened Images:python3-11-main@src",
"Red Hat Hardened Images:python3-11-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:8824
Vulnerability from csaf_redhat - Published: 2026-04-17 19:24 - Updated: 2026-06-16 21:38A vulnerability in Python’s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A zip file handling flaw has been discovered in the python standard library `zipfile` module. The 'zipfile' module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the 'zipfile' module compared to other ZIP implementations.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing character filtering has been discovered in Python. When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in cpython. This vulnerability allows impacted availability via a quadratic algorithm in `xml.dom.minidom` methods, such as `appendChild()`, when building excessively nested documents due to a dependency on `_clear_id_cache()`
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the http.client module in the Python standard library. When reading an HTTP response from a server, if no read amount is specified, the default behavior will be to use Content-Length. This issue allows a malicious server to cause the client to read large amounts of data into memory, potentially causing memory allocations errors, swapping, out-of-memory conditions or even system freezes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the poplib module in the Python standard library. The poplib module does not reject control characters, such as newlines, in user-controlled input passed to POP3 commands. This issue allows an attacker to inject additional commands to be executed in the POP3 server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the email module in the Python standard library. When serializing an email message, the BytesGenerator class fails to properly quote newline characters for email headers. This issue is exploitable when the LiteralHeader class is used as it does not respect email folding rules, allowing an attacker to inject email headers and potentially modify message recipients or the email body, and spoof sender information.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.
CWE-778 - Insufficient Logging| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. A malicious Python process could exploit the "profiling.sampling" module and "asyncio introspection capabilities" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-12-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for Red Hat Hardened Images RPMs is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "This update includes the following RPMs:\n\npython3.12:\n * python3.12-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-debug-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-devel-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-idle-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-libs-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-test-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-tkinter-3.12.13-3.hum1 (aarch64, x86_64)\n * python3.12-3.12.13-3.hum1.src (src)",
"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:8824",
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "external",
"summary": "https://images.redhat.com/",
"url": "https://images.redhat.com/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-5713",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1299",
"url": "https://access.redhat.com/security/cve/CVE-2026-1299"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-0865",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-6075",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13837",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-13836",
"url": "https://access.redhat.com/security/cve/CVE-2025-13836"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-11468",
"url": "https://access.redhat.com/security/cve/CVE-2025-11468"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-8291",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-12084",
"url": "https://access.redhat.com/security/cve/CVE-2025-12084"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15282",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15367",
"url": "https://access.redhat.com/security/cve/CVE-2025-15367"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4786",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4224",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-3644",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6100",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1502",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-2297",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15366",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_8824.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update",
"tracking": {
"current_release_date": "2026-06-16T21:38:19+00:00",
"generator": {
"date": "2026-06-16T21:38:19+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:8824",
"initial_release_date": "2026-04-17T19:24:04+00:00",
"revision_history": [
{
"date": "2026-04-17T19:24:04+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-04-22T13:50:42+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:38:19+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Hardened Images",
"product": {
"name": "Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:hummingbird:1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Hardened Images"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-12-main@aarch64",
"product": {
"name": "python3-12-main@aarch64",
"product_id": "python3-12-main@aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.12@3.12.13-3.hum1?arch=aarch64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-aarch64-rpms"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-12-main@src",
"product": {
"name": "python3-12-main@src",
"product_id": "python3-12-main@src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.12@3.12.13-3.hum1?arch=src\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-source-rpms"
}
}
}
],
"category": "architecture",
"name": "src"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-12-main@x86_64",
"product": {
"name": "python3-12-main@x86_64",
"product_id": "python3-12-main@x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.12@3.12.13-3.hum1?arch=x86_64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "x86_64"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-12-main@aarch64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-12-main@aarch64"
},
"product_reference": "python3-12-main@aarch64",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-12-main@src as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-12-main@src"
},
"product_reference": "python3-12-main@src",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-12-main@x86_64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-12-main@x86_64"
},
"product_reference": "python3-12-main@x86_64",
"relates_to_product_reference": "Red Hat Hardened Images"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-6075",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-10-31T17:01:47.052517+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2408891"
}
],
"notes": [
{
"category": "description",
"text": "A vulnerability in Python\u2019s os.path.expandvars() function that can cause performance degradation. When processing specially crafted, user-controlled input with nested environment variable patterns, the function exhibits quadratic time complexity, potentially leading to excessive CPU usage and denial of service (DoS) conditions. No code execution or data exposure occurs, so the impact is limited to performance slowdown.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Quadratic complexity in os.path.expandvars() with user-controlled template",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Low rather than Moderate because it only causes a performance inefficiency without affecting code execution, data integrity, or confidentiality. The flaw lies in the algorithmic complexity of os.path.expandvars(), which can become quadratic when processing crafted input containing repetitive or nested environment variable references. Exploitation requires the attacker to control the input string passed to this function, which is uncommon in secure applications. Moreover, the impact is limited to increased CPU utilization and potential slowdown, not system compromise or data manipulation. Since the issue does not introduce memory corruption, privilege escalation, or information disclosure risks, its overall impact scope and exploitability are minimal, justifying a Low severity rating.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-6075"
},
{
"category": "external",
"summary": "RHBZ#2408891",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2408891"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-6075",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-6075"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-6075"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/136065",
"url": "https://github.com/python/cpython/issues/136065"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/IUP5QJ6D4KK6ULHOMPC7DPNKRYQTQNLA/"
}
],
"release_date": "2025-10-31T16:41:34.983000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "No mitigation is currently available that meets Red Hat Product Security\u2019s standards for usability, deployment, applicability, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "LOW",
"baseScore": 4.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "python: Quadratic complexity in os.path.expandvars() with user-controlled template"
},
{
"cve": "CVE-2025-8291",
"cwe": {
"id": "CWE-130",
"name": "Improper Handling of Length Parameter Inconsistency"
},
"discovery_date": "2025-10-07T19:01:23.599055+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2402342"
}
],
"notes": [
{
"category": "description",
"text": "A zip file handling flaw has been discovered in the python standard library `zipfile` module. The \u0027zipfile\u0027 module would not check the validity of the ZIP64 End of Central Directory (EOCD) Locator record offset value would not be used to locate the ZIP64 EOCD record, instead the ZIP64 EOCD record would be assumed to be the previous record in the ZIP archive. This could be abused to create ZIP archives that are handled differently by the \u0027zipfile\u0027 module compared to other ZIP implementations.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-8291"
},
{
"category": "external",
"summary": "RHBZ#2402342",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2402342"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-8291",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-8291"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-8291"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267",
"url": "https://github.com/python/cpython/commit/162997bb70e067668c039700141770687bc8f267"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6",
"url": "https://github.com/python/cpython/commit/333d4a6f4967d3ace91492a39ededbcf3faa76a6"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/139700",
"url": "https://github.com/python/cpython/issues/139700"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/139702",
"url": "https://github.com/python/cpython/pull/139702"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/QECOPWMTH4VPPJAXAH2BGTA4XADOP62G/"
}
],
"release_date": "2025-10-07T18:10:05.908000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.3,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: python: Python zipfile End of Central Directory (EOCD) Locator record offset not checked"
},
{
"cve": "CVE-2025-11468",
"cwe": {
"id": "CWE-140",
"name": "Improper Neutralization of Delimiters"
},
"discovery_date": "2026-01-20T22:02:21.862077+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431375"
}
],
"notes": [
{
"category": "description",
"text": "Missing character filtering has been discovered in Python. When folding a long comment in an email header containing exclusively unfoldable characters, the parenthesis would not be preserved. This could be used for injecting headers into email messages where addresses are user-controlled and not sanitized.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Missing character filtering in Python",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-11468"
},
{
"category": "external",
"summary": "RHBZ#2431375",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431375"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-11468",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-11468"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-11468",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-11468"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143935",
"url": "https://github.com/python/cpython/issues/143935"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143936",
"url": "https://github.com/python/cpython/pull/143936"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/FELSEOLBI2QR6YLG6Q7VYF7FWSGQTKLI/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/FELSEOLBI2QR6YLG6Q7VYF7FWSGQTKLI/"
}
],
"release_date": "2026-01-20T21:09:11.229000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Missing character filtering in Python"
},
{
"cve": "CVE-2025-12084",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-03T19:01:03.489250+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418655"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in cpython. This vulnerability allows impacted availability via a quadratic algorithm in `xml.dom.minidom` methods, such as `appendChild()`, when building excessively nested documents due to a dependency on `_clear_id_cache()`",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: python: cpython: Quadratic algorithm in xml.dom.minidom leads to denial of service",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This vulnerability is rated Important for Red Hat products as it can lead to a denial of service. The flaw exists in the `xml.dom.minidom` module of cpython, where a quadratic algorithm in methods like `appendChild()` can be triggered when processing excessively nested XML documents. When successfully exploited this may impact the availability of applications utilizing this functionality across affected Red Hat products.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-12084"
},
{
"category": "external",
"summary": "RHBZ#2418655",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418655"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-12084",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-12084"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-12084",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-12084"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/142145",
"url": "https://github.com/python/cpython/issues/142145"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/142146",
"url": "https://github.com/python/cpython/pull/142146"
}
],
"release_date": "2025-12-03T18:55:32.222000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 7.5,
"baseSeverity": "HIGH",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: python: cpython: Quadratic algorithm in xml.dom.minidom leads to denial of service"
},
{
"cve": "CVE-2025-13836",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-01T19:01:03.091899+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418078"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the http.client module in the Python standard library. When reading an HTTP response from a server, if no read amount is specified, the default behavior will be to use Content-Length. This issue allows a malicious server to cause the client to read large amounts of data into memory, potentially causing memory allocations errors, swapping, out-of-memory conditions or even system freezes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Excessive read buffering DoS in http.client",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploited by Python applications using the http.client.HTTPResponse.read function without the amount parameter, which specifies the read size in bytes. Note that Python libraries may use this function internally and make applications vulnerable. Additionally, vulnerable Python applications must connect to a malicious or compromised server that replies with a very large or crafted Content-Length header to trigger this issue, limiting the exposure of 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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13836"
},
{
"category": "external",
"summary": "RHBZ#2418078",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418078"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13836",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13836"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13836",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13836"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/119451",
"url": "https://github.com/python/cpython/issues/119451"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/119454",
"url": "https://github.com/python/cpython/pull/119454"
}
],
"release_date": "2025-12-01T18:02:38.483000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Since this vulnerability is triggered when no read amount is specified and the client defaults to using the potentially malicious Content-Length header, developers can mitigate this issue in their code by always imposing an explicit, safe limit on data reads.\n\nApplications using the http.client.HTTPResponse.read function directly can ensure that read operations specify a byte limit:\n\n~~~\n...\nmax_safe_read = 10 * 1024 * 1024\ndata = response.read(max_safe_read)\n...\n~~~",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 6.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Excessive read buffering DoS in http.client"
},
{
"cve": "CVE-2025-13837",
"cwe": {
"id": "CWE-770",
"name": "Allocation of Resources Without Limits or Throttling"
},
"discovery_date": "2025-12-01T19:01:32.492656+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2418084"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the plistlib module in the Python standard library. The amount of data to read from a Plist file is specified in the file itself. This issue allows a specially crafted Plist file to cause an application to allocate a large amount of memory, potentially resulting in allocations errors, swapping, out-of-memory conditions or even system freezes.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Out-of-memory when loading Plist",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploited by Python applications processing malicious or untrusted Plist files, which are not typically done in Linux systems or applications. Furthermore, this flaw can cause only a denial of service with no other security impact. Due to these reasons, this vulnerability has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-13837"
},
{
"category": "external",
"summary": "RHBZ#2418084",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2418084"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-13837",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-13837"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-13837"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/119342",
"url": "https://github.com/python/cpython/issues/119342"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/119343",
"url": "https://github.com/python/cpython/pull/119343"
}
],
"release_date": "2025-12-01T18:13:32.739000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "CHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Out-of-memory when loading Plist"
},
{
"cve": "CVE-2025-15282",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:20.971828+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431366"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled data URLs parsed by urllib.request.DataHandler allow injecting headers through newlines in the data URL mediatype.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Header injection via newlines in data URL mediatype in Python",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15282"
},
{
"category": "external",
"summary": "RHBZ#2431366",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431366"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15282",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15282"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15282"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143925",
"url": "https://github.com/python/cpython/issues/143925"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143926",
"url": "https://github.com/python/cpython/pull/143926"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/X66HL7SISGJT33J53OHXMZT4DFLMHVKF/"
}
],
"release_date": "2026-01-20T21:35:13.865000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.8,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Header injection via newlines in data URL mediatype in Python"
},
{
"cve": "CVE-2025-15366",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:33.257688+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431368"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: IMAP command injection in user-controlled commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to have the privileges required to send malicious input to an application that sends IMAP commands to a server. Additionally, this flaw can allow attackers to manipulate the state of the mailbox (e.g., delete emails, move folders, flag messages) and to potentially read metadata or specific email content, but it does not allow arbitrary code execution or OS command injection. Due to these reasons, this issue has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "external",
"summary": "RHBZ#2431368",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431368"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15366",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15366"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143921",
"url": "https://github.com/python/cpython/issues/143921"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143922",
"url": "https://github.com/python/cpython/pull/143922"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/"
}
],
"release_date": "2026-01-20T21:40:24.938000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that no data passed to the imaplib module contains newline or carriage return characters.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: IMAP command injection in user-controlled commands"
},
{
"cve": "CVE-2025-15367",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"discovery_date": "2026-01-20T22:02:09.399038+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431373"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the poplib module in the Python standard library. The poplib module does not reject control characters, such as newlines, in user-controlled input passed to POP3 commands. This issue allows an attacker to inject additional commands to be executed in the POP3 server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: POP3 command injection in user-controlled commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to have the privileges required to send malicious input to an application that sends POP3 commands to a server. Additionally, this flaw can allow attackers to manipulate the state of the mailbox (e.g., delete emails) and to potentially read metadata or specific email content, but it does not allow arbitrary code execution or OS command injection. Due to these reasons, this issue has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15367"
},
{
"category": "external",
"summary": "RHBZ#2431373",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431373"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15367",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15367"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15367",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15367"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143923",
"url": "https://github.com/python/cpython/issues/143923"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143924",
"url": "https://github.com/python/cpython/pull/143924"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/CBFBOWVGGUJFSGITQCCBZS4GEYYZ7ZNE/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/CBFBOWVGGUJFSGITQCCBZS4GEYYZ7ZNE/"
}
],
"release_date": "2026-01-20T21:47:09.885000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that no data passed to the poplib module contains newline or carriage return characters.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: POP3 command injection in user-controlled commands"
},
{
"cve": "CVE-2026-0865",
"cwe": {
"id": "CWE-74",
"name": "Improper Neutralization of Special Elements in Output Used by a Downstream Component (\u0027Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:26.694713+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431367"
}
],
"notes": [
{
"category": "description",
"text": "Missing newline filtering has been discovered in Python. User-controlled header names and values containing newlines can allow injecting HTTP headers.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: wsgiref.headers.Headers allows header newline injection in Python",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-0865"
},
{
"category": "external",
"summary": "RHBZ#2431367",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431367"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-0865",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-0865"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-0865"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143916",
"url": "https://github.com/python/cpython/issues/143916"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143917",
"url": "https://github.com/python/cpython/pull/143917"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/BJ6QPHNSHJTS3A7CFV6IBMCAP2DWRVNT/"
}
],
"release_date": "2026-01-20T21:26:15.274000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: wsgiref.headers.Headers allows header newline injection in Python"
},
{
"cve": "CVE-2026-1299",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-01-23T17:02:57.343486+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2432437"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the email module in the Python standard library. When serializing an email message, the BytesGenerator class fails to properly quote newline characters for email headers. This issue is exploitable when the LiteralHeader class is used as it does not respect email folding rules, allowing an attacker to inject email headers and potentially modify message recipients or the email body, and spoof sender information.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: email header injection due to unquoted newlines",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This issue can only be exploitable by Python applications using the LiteralHeader class to write email headers, as it does not respect email folding rules. Additionally, this issue allows attackers to modify message recipients or the email body and spoof sender identity but it does not cause memory corruption or arbitrary code execution. Due to these reasons, this vulnerability has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1299"
},
{
"category": "external",
"summary": "RHBZ#2432437",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2432437"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1299",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1299"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1299",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1299"
},
{
"category": "external",
"summary": "https://cve.org/CVERecord?id=CVE-2024-6923",
"url": "https://cve.org/CVERecord?id=CVE-2024-6923"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/052e55e7d44718fe46cbba0ca995cb8fcc359413",
"url": "https://github.com/python/cpython/commit/052e55e7d44718fe46cbba0ca995cb8fcc359413"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/144125",
"url": "https://github.com/python/cpython/issues/144125"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/144126",
"url": "https://github.com/python/cpython/pull/144126"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/6ZZULGALJTITEAGEXLDJE2C6FORDXPBT/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/6ZZULGALJTITEAGEXLDJE2C6FORDXPBT/"
}
],
"release_date": "2026-01-23T16:27:13.346000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "To mitigate this issue, applications accepting user-supplied data for email headers should sanitize the input by stripping or rejecting any strings containing carriage return or line feed characters, \u0027\\r\u0027 or \u0027\\n\u0027, respectively, preventing malicious sequences that could lead to header manipulation.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: email header injection due to unquoted newlines"
},
{
"cve": "CVE-2026-1502",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-04-10T19:01:07.715197+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457409"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "RHBZ#2457409",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457409"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1502",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1502"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69",
"url": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/146211",
"url": "https://github.com/python/cpython/issues/146211"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/146212",
"url": "https://github.com/python/cpython/pull/146212"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/"
}
],
"release_date": "2026-04-10T17:54:44.121000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers"
},
{
"cve": "CVE-2026-2297",
"cwe": {
"id": "CWE-778",
"name": "Insufficient Logging"
},
"discovery_date": "2026-03-04T23:01:09.396553+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2444691"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in CPython. This vulnerability allows a local user with low privileges to bypass security auditing mechanisms. The issue occurs because the SourcelessFileLoader component, responsible for handling older Python compiled files (.pyc), does not properly trigger system audit events. This oversight could enable malicious activities to go undetected, compromising the integrity of the system.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-2297"
},
{
"category": "external",
"summary": "RHBZ#2444691",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2444691"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-2297",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-2297"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-2297"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e",
"url": "https://github.com/python/cpython/commit/482d6f8bdba9da3725d272e8bb4a2d25fb6a603e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e",
"url": "https://github.com/python/cpython/commit/a51b1b512de1d56b3714b65628a2eae2b07e535e"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86",
"url": "https://github.com/python/cpython/commit/e58e9802b9bec5cdbf48fc9bf1da5f4fda482e86"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145506",
"url": "https://github.com/python/cpython/issues/145506"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145507",
"url": "https://github.com/python/cpython/pull/145507"
}
],
"release_date": "2026-03-04T22:10:43.297000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 3.3,
"baseSeverity": "LOW",
"confidentialityImpact": "NONE",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Low"
}
],
"title": "cpython: CPython: Logging Bypass in Legacy .pyc File Handling"
},
{
"cve": "CVE-2026-3644",
"cwe": {
"id": "CWE-791",
"name": "Incomplete Filtering of Special Elements"
},
"discovery_date": "2026-03-16T18:02:25.997880+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448168"
}
],
"notes": [
{
"category": "description",
"text": "A control character validation flaw has been discovered in the Python http.cookie module. The Morsel.update(), |= operator, and unpickling paths were not patched to resolve CVE-2026-0672, allowing control characters to bypass input validation. Additionally, BaseCookie.js_output() lacked the output validation applied to BaseCookie.output().",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Incomplete control character validation in http.cookies",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-3644"
},
{
"category": "external",
"summary": "RHBZ#2448168",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448168"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-3644",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-3644"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-3644"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4",
"url": "https://github.com/python/cpython/commit/57e88c1cf95e1481b94ae57abe1010469d47a6b4"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145599",
"url": "https://github.com/python/cpython/issues/145599"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145600",
"url": "https://github.com/python/cpython/pull/145600"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/H6CADMBCDRFGWCMOXWUIHFJNV43GABJ7/"
}
],
"release_date": "2026-03-16T17:37:31.344000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 5.4,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "LOW",
"integrityImpact": "LOW",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Incomplete control character validation in http.cookies"
},
{
"cve": "CVE-2026-4224",
"cwe": {
"id": "CWE-805",
"name": "Buffer Access with Incorrect Length Value"
},
"discovery_date": "2026-03-16T19:01:54.161187+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2448181"
}
],
"notes": [
{
"category": "description",
"text": "A stack overflow flaw has been discovered in the python pyexpat module. When an Expat parser with a registered ElementDeclHandler parses an inline document type definition containing a deeply nested content model a C stack overflow occurs. This will result in a program crash.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: Stack overflow parsing XML with deeply nested DTD content models",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4224"
},
{
"category": "external",
"summary": "RHBZ#2448181",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2448181"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4224",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4224"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4224"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a",
"url": "https://github.com/python/cpython/commit/196edfb06a7458377d4d0f4b3cd41724c1f3bd4a"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3",
"url": "https://github.com/python/cpython/commit/e0a8a6da90597a924b300debe045cdb4628ee1f3"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768",
"url": "https://github.com/python/cpython/commit/eb0e8be3a7e11b87d198a2c3af1ed0eccf532768"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/145986",
"url": "https://github.com/python/cpython/issues/145986"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/145987",
"url": "https://github.com/python/cpython/pull/145987"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/5M7CGUW3XBRY7II4DK43KF7NQQ3TPZ6R/"
}
],
"release_date": "2026-03-16T17:52:26.639000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 5.9,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "NONE",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: Stack overflow parsing XML with deeply nested DTD content models"
},
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-5713",
"cwe": {
"id": "CWE-822",
"name": "Untrusted Pointer Dereference"
},
"discovery_date": "2026-04-14T16:01:58.710183+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458239"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. A malicious Python process could exploit the \"profiling.sampling\" module and \"asyncio introspection capabilities\" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "RHBZ#2458239",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458239"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5713",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5713"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148178",
"url": "https://github.com/python/cpython/issues/148178"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148187",
"url": "https://github.com/python/cpython/pull/148187"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/"
}
],
"release_date": "2026-04-14T15:11:51.122000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 6.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process."
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-17T19:24:04+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:8824"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-12-main@aarch64",
"Red Hat Hardened Images:python3-12-main@src",
"Red Hat Hardened Images:python3-12-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
RHSA-2026:9228
Vulnerability from csaf_redhat - Published: 2026-04-21 07:26 - Updated: 2026-06-16 21:38A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing "%action" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python. A malicious Python process could exploit the "profiling.sampling" module and "asyncio introspection capabilities" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
A flaw was found in Python's decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.
| Product | Identifier | Version | Remediation |
|---|---|---|---|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@aarch64 | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@noarch | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@src | — |
Vendor Fix
fix
Workaround
|
|
| Unresolved product id: Red Hat Hardened Images:python3-14-main@x86_64 | — |
Vendor Fix
fix
Workaround
|
{
"document": {
"aggregate_severity": {
"namespace": "https://access.redhat.com/security/updates/classification/",
"text": "Important"
},
"category": "csaf_security_advisory",
"csaf_version": "2.0",
"distribution": {
"text": "Copyright \u00a9 Red Hat, Inc. All rights reserved.",
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "en",
"notes": [
{
"category": "summary",
"text": "An update for Red Hat Hardened Images RPMs is now available.",
"title": "Topic"
},
{
"category": "general",
"text": "This update includes the following RPMs:\n\npython3.14:\n * python-unversioned-command-3.14.4-2.hum1 (noarch)\n * python3-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-debug-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-devel-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-idle-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-libs-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-test-3.14.4-2.hum1 (aarch64, x86_64)\n * python3-tkinter-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-debug-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-devel-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-idle-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-libs-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-test-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-freethreading-tkinter-3.14.4-2.hum1 (aarch64, x86_64)\n * python3.14-3.14.4-2.hum1.src (src)",
"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:9228",
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "external",
"summary": "https://images.redhat.com/",
"url": "https://images.redhat.com/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-4786",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/updates/classification/",
"url": "https://access.redhat.com/security/updates/classification/"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-5713",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-6100",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2026-1502",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://access.redhat.com/security/cve/CVE-2025-15366",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "self",
"summary": "Canonical URL",
"url": "https://security.access.redhat.com/data/csaf/v2/advisories/2026/rhsa-2026_9228.json"
}
],
"title": "Red Hat Security Advisory: Red Hat Hardened Images RPMs bug fix and enhancement update",
"tracking": {
"current_release_date": "2026-06-16T21:38:20+00:00",
"generator": {
"date": "2026-06-16T21:38:20+00:00",
"engine": {
"name": "Red Hat SDEngine",
"version": "5.0.0"
}
},
"id": "RHSA-2026:9228",
"initial_release_date": "2026-04-21T07:26:49+00:00",
"revision_history": [
{
"date": "2026-04-21T07:26:49+00:00",
"number": "1",
"summary": "Initial version"
},
{
"date": "2026-06-11T23:49:14+00:00",
"number": "2",
"summary": "Last updated version"
},
{
"date": "2026-06-16T21:38:20+00:00",
"number": "3",
"summary": "Last generated version"
}
],
"status": "final",
"version": "3"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_name",
"name": "Red Hat Hardened Images",
"product": {
"name": "Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images",
"product_identification_helper": {
"cpe": "cpe:/a:redhat:hummingbird:1"
}
}
}
],
"category": "product_family",
"name": "Red Hat Hardened Images"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-14-main@noarch",
"product": {
"name": "python3-14-main@noarch",
"product_id": "python3-14-main@noarch",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python-unversioned-command@3.14.4-2.hum1?arch=noarch\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "noarch"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-14-main@aarch64",
"product": {
"name": "python3-14-main@aarch64",
"product_id": "python3-14-main@aarch64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.14.4-2.hum1?arch=aarch64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-aarch64-rpms"
}
}
}
],
"category": "architecture",
"name": "aarch64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-14-main@x86_64",
"product": {
"name": "python3-14-main@x86_64",
"product_id": "python3-14-main@x86_64",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3@3.14.4-2.hum1?arch=x86_64\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-x86_64-rpms"
}
}
}
],
"category": "architecture",
"name": "x86_64"
},
{
"branches": [
{
"category": "product_version",
"name": "python3-14-main@src",
"product": {
"name": "python3-14-main@src",
"product_id": "python3-14-main@src",
"product_identification_helper": {
"purl": "pkg:rpm/redhat/python3.14@3.14.4-2.hum1?arch=src\u0026distro=hummingbird-20251124\u0026repository_id=public-hummingbird-source-rpms"
}
}
}
],
"category": "architecture",
"name": "src"
}
],
"category": "vendor",
"name": "Red Hat"
}
],
"relationships": [
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-14-main@aarch64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-14-main@aarch64"
},
"product_reference": "python3-14-main@aarch64",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-14-main@noarch as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-14-main@noarch"
},
"product_reference": "python3-14-main@noarch",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-14-main@src as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-14-main@src"
},
"product_reference": "python3-14-main@src",
"relates_to_product_reference": "Red Hat Hardened Images"
},
{
"category": "default_component_of",
"full_product_name": {
"name": "python3-14-main@x86_64 as a component of Red Hat Hardened Images",
"product_id": "Red Hat Hardened Images:python3-14-main@x86_64"
},
"product_reference": "python3-14-main@x86_64",
"relates_to_product_reference": "Red Hat Hardened Images"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2025-15366",
"cwe": {
"id": "CWE-77",
"name": "Improper Neutralization of Special Elements used in a Command (\u0027Command Injection\u0027)"
},
"discovery_date": "2026-01-20T22:01:33.257688+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2431368"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the imaplib module in the Python standard library. The imaplib module does not reject control characters, such as newlines, in user-controlled input passed to IMAP commands. This issue allows an attacker to inject additional commands to be executed in the IMAP server.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "cpython: IMAP command injection in user-controlled commands",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "To exploit this issue, an attacker needs to have the privileges required to send malicious input to an application that sends IMAP commands to a server. Additionally, this flaw can allow attackers to manipulate the state of the mailbox (e.g., delete emails, move folders, flag messages) and to potentially read metadata or specific email content, but it does not allow arbitrary code execution or OS command injection. Due to these reasons, this issue has been rated with a moderate severity.",
"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": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2025-15366"
},
{
"category": "external",
"summary": "RHBZ#2431368",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2431368"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2025-15366",
"url": "https://www.cve.org/CVERecord?id=CVE-2025-15366"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-15366"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/143921",
"url": "https://github.com/python/cpython/issues/143921"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/143922",
"url": "https://github.com/python/cpython/pull/143922"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/DD7C7JZJYTBXMDOWKCEIEBJLBRU64OMR/"
}
],
"release_date": "2026-01-20T21:40:24.938000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-21T07:26:49+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "workaround",
"details": "To mitigate this vulnerability, ensure that no data passed to the imaplib module contains newline or carriage return characters.",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "LOW",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "cpython: IMAP command injection in user-controlled commands"
},
{
"cve": "CVE-2026-1502",
"cwe": {
"id": "CWE-93",
"name": "Improper Neutralization of CRLF Sequences (\u0027CRLF Injection\u0027)"
},
"discovery_date": "2026-04-10T19:01:07.715197+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457409"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. This vulnerability allows for the injection of extra information into HTTP communication. Specifically, the system does not properly prevent special characters (carriage return and line feed) from being included in HTTP client proxy tunnel headers or host fields.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers",
"title": "Vulnerability summary"
},
{
"category": "general",
"text": "The CVSS score(s) listed for this vulnerability do not reflect the associated product\u0027s status, and are included for informational purposes to better understand the severity of this vulnerability.",
"title": "CVSS score applicability"
}
],
"product_status": {
"fixed": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-1502"
},
{
"category": "external",
"summary": "RHBZ#2457409",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457409"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-1502",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-1502"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-1502"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69",
"url": "https://github.com/python/cpython/commit/05ed7ce7ae9e17c23a04085b2539fe6d6d3cef69"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/146211",
"url": "https://github.com/python/cpython/issues/146211"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/146212",
"url": "https://github.com/python/cpython/pull/146212"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/2IVPAEQWUJBCTQZEJEVTYCIKSMQPGRZ3/"
}
],
"release_date": "2026-04-10T17:54:44.121000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-21T07:26:49+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "LOW",
"attackVector": "NETWORK",
"availabilityImpact": "NONE",
"baseScore": 4.5,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "NONE",
"integrityImpact": "HIGH",
"privilegesRequired": "HIGH",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:N/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: HTTP header injection via CR/LF in proxy tunnel headers"
},
{
"cve": "CVE-2026-4786",
"cwe": {
"id": "CWE-88",
"name": "Improper Neutralization of Argument Delimiters in a Command (\u0027Argument Injection\u0027)"
},
"discovery_date": "2026-04-13T22:01:38.006388+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458049"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in the Python webbrowser.open() API. If a specially crafted URL containing \"%action\" is processed, an attacker could bypass a previous mitigation for CVE-2026-4519. This bypass allows for command injection into the underlying shell, potentially leading to arbitrary code execution.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "This flaw in the Python `webbrowser.open()` API allows for command injection and arbitrary code execution when processing specially crafted URLs containing \"%action\". This bypasses a previous mitigation for CVE-2026-4519.",
"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": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-4786"
},
{
"category": "external",
"summary": "RHBZ#2458049",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458049"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-4786",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-4786"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-4786"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148169",
"url": "https://github.com/python/cpython/issues/148169"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148170",
"url": "https://github.com/python/cpython/pull/148170"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/JQDUNJVB4AQNTJECSUKOBDU3XCJIPSE5/"
}
],
"release_date": "2026-04-13T21:52:19.036000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-21T07:26:49+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base, or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "LOW",
"baseScore": 7.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:L",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: cpython: Python: Arbitrary code execution via command injection in webbrowser.open() API"
},
{
"cve": "CVE-2026-5713",
"cwe": {
"id": "CWE-822",
"name": "Untrusted Pointer Dereference"
},
"discovery_date": "2026-04-14T16:01:58.710183+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2458239"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python. A malicious Python process could exploit the \"profiling.sampling\" module and \"asyncio introspection capabilities\" to read and write memory addresses within a privileged process. This vulnerability occurs when the privileged process connects to the malicious process via its remote debugging feature, potentially leading to information disclosure and arbitrary code execution. Successful exploitation requires repeated connections, which may cause instability in the connecting process.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process.",
"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": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-5713"
},
{
"category": "external",
"summary": "RHBZ#2458239",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2458239"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-5713",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-5713"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-5713"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148178",
"url": "https://github.com/python/cpython/issues/148178"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148187",
"url": "https://github.com/python/cpython/pull/148187"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/OG4RHARYSNIE22GGOMVMCRH76L5HKPLM/"
}
],
"release_date": "2026-04-14T15:11:51.122000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-21T07:26:49+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "LOCAL",
"availabilityImpact": "NONE",
"baseScore": 6.0,
"baseSeverity": "MEDIUM",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "LOW",
"scope": "UNCHANGED",
"userInteraction": "REQUIRED",
"vectorString": "CVSS:3.1/AV:L/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:N",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Moderate"
}
],
"title": "python: Python: Information disclosure and arbitrary code execution via remote debugging with a malicious process."
},
{
"cve": "CVE-2026-6100",
"cwe": {
"id": "CWE-825",
"name": "Expired Pointer Dereference"
},
"discovery_date": "2026-04-13T18:01:31.970255+00:00",
"ids": [
{
"system_name": "Red Hat Bugzilla ID",
"text": "2457932"
}
],
"notes": [
{
"category": "description",
"text": "A flaw was found in Python\u0027s decompression modules, including `lzma.LZMADecompressor`, `bz2.BZ2Decompressor`, and `gzip.GzipFile`. This vulnerability, a use-after-free, can occur if a program attempts to re-use a decompression object after a memory allocation error, especially when the system is experiencing high memory usage. Exploitation of this flaw could potentially allow an attacker to execute arbitrary code or access sensitive data. The vulnerability is only present if the program re-uses decompressor instances across multiple decompression calls even after a `MemoryError` is raised during decompression. Using the helper functions to one-shot decompress data such as `lzma.decompress()`, `bz2.decompress()`, `gzip.decompress()`, and `zlib.decompress()` are not affected as a new decompressor instance is used per call. If the decompressor instance is not re-used after an error condition, this usage is similarly not vulnerable.",
"title": "Vulnerability description"
},
{
"category": "summary",
"text": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules",
"title": "Vulnerability summary"
},
{
"category": "other",
"text": "The severity of this flaw is somewhat mitigated on Red Hat platforms. By default processes are not executed with root user privilege and are limited in their scope which in turn limits the impact of this flaw.",
"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": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
},
"references": [
{
"category": "self",
"summary": "Canonical URL",
"url": "https://access.redhat.com/security/cve/CVE-2026-6100"
},
{
"category": "external",
"summary": "RHBZ#2457932",
"url": "https://bugzilla.redhat.com/show_bug.cgi?id=2457932"
},
{
"category": "external",
"summary": "https://www.cve.org/CVERecord?id=CVE-2026-6100",
"url": "https://www.cve.org/CVERecord?id=CVE-2026-6100"
},
{
"category": "external",
"summary": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-6100"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d",
"url": "https://github.com/python/cpython/commit/6a5f79c8d7bbf22b083b240910c7a8781a59437d"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2",
"url": "https://github.com/python/cpython/commit/8fc66aef6d7b3ae58f43f5c66f9366cc8cbbfcd2"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20",
"url": "https://github.com/python/cpython/commit/c3cf71c3366fe49acb776a639405c0eea6169c20"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/issues/148395",
"url": "https://github.com/python/cpython/issues/148395"
},
{
"category": "external",
"summary": "https://github.com/python/cpython/pull/148396",
"url": "https://github.com/python/cpython/pull/148396"
},
{
"category": "external",
"summary": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/",
"url": "https://mail.python.org/archives/list/security-announce@python.org/thread/HTWB2Z6KT5QQX4RYEZAFININDHNOSIF3/"
}
],
"release_date": "2026-04-13T17:15:47.606000+00:00",
"remediations": [
{
"category": "vendor_fix",
"date": "2026-04-21T07:26:49+00:00",
"details": "For details on how to apply this update, which includes the changes described in this advisory, refer to:\nhttps://images.redhat.com/",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
],
"restart_required": {
"category": "none"
},
"url": "https://access.redhat.com/errata/RHSA-2026:9228"
},
{
"category": "workaround",
"details": "Mitigation for this issue is either not available or the currently available options do not meet the Red Hat Product Security criteria comprising ease of use and deployment, applicability to widespread installation base or stability.",
"product_ids": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"scores": [
{
"cvss_v3": {
"attackComplexity": "HIGH",
"attackVector": "NETWORK",
"availabilityImpact": "HIGH",
"baseScore": 8.1,
"baseSeverity": "HIGH",
"confidentialityImpact": "HIGH",
"integrityImpact": "HIGH",
"privilegesRequired": "NONE",
"scope": "UNCHANGED",
"userInteraction": "NONE",
"vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H",
"version": "3.1"
},
"products": [
"Red Hat Hardened Images:python3-14-main@aarch64",
"Red Hat Hardened Images:python3-14-main@noarch",
"Red Hat Hardened Images:python3-14-main@src",
"Red Hat Hardened Images:python3-14-main@x86_64"
]
}
],
"threats": [
{
"category": "impact",
"details": "Important"
}
],
"title": "python: Python: Arbitrary code execution or information disclosure via use-after-free in decompression modules"
}
]
}
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.