fast-xml-parser affected by numeric entity expansion bypassing all entity expansion limits (incomplete fix for CVE-2026-26278)
NaturalIntelligence · fast-xml-parser
7.5HighCVSS 3.1
Recommended action
Within 7 days
High technical severity with public exploit material referenced by a structured source; prioritise exposed affected systems while verifying vendor guidance.
Patch available
Distribution package intelligence
Ubuntu vendor package status
Canonical’s release and source-package findings are shown separately from local repository availability.
1 package state
Repository candidate not checked
A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.
Ubuntu release
Source package
Vendor state
Fixed version
Evidence
Ubuntu 24.04 LTSnoble · standard archive
node-webfont
Under evaluationCanonical reports that the package might be affected and still needs evaluation or fixing.
Structured product status and remediation from the issuing vendor. Product-state explanations are always visible; large lists can be searched or downloaded.
1 current
CVE-2026-33036 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityfast-xml-parser: fast-xml-parser: Denial of Service via XML entity expansion bypass
7 known affected
The vendor explicitly identifies these products as affected by this CVE.
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8
rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub
openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps
openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps
container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4
container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4
ansible-automation-platform/automation-portal as a component of Self-service automation portal 2
Summary
A flaw was found in fast-xml-parser. A remote attacker can exploit this vulnerability by supplying specially crafted XML input containing numeric character references or standard XML entities. This input can bypass configured entity expansion limits, leading to excessive memory allocation and high CPU usage. The primary consequence is a Denial of Service (DoS), which can crash the affected process.
Remediation
If you are using an earlier version of RHACS, you are advised to upgrade to the version of RHACS mentioned in the synopsis and release notes in order to take advantage of the enhancements, bug fixes, and/or security patches in the release.
Optional official sources
National CERT insights ?CERT means Computer Emergency Response Team; CSIRT is the closely related term Computer Security Incident Response Team.
Select the national-authority views to include. The exact source language is shown on each matched advisory. Your choice is remembered on this device and encoded in the shareable URL.
Official European source
ENISA European Vulnerability Database
Official EUVD identifiers, advisory evidence and known-exploited context. Missing fields are not treated as evidence of low risk.
1 current
ENISA EUVD identifier
EUVD-2026-13573
No EUVD known-exploited evidence
ENISA has published the identifier mapping but no EUVD description has been stored yet.
EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionWithin 7 days
High technical severity with public exploit material referenced by a structured source; prioritise exposed affected systems while verifying vendor guidance.
Patch available
01
What, why and how
fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
What
fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
Why
The product uses XML documents and allows their structure to be defined with a Document Type Definition (DTD), but it does not properly control the number of recursive definitions of entities.
How
An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.
What
fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
Why
The product uses XML documents and allows their structure to be defined with a Document Type Definition (DTD), but it does not properly control the number of recursive definitions of entities.
How
An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may disrupt the affected service.
02
Exploit reality and attack path
CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.
Observed exploitation ?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.No confirmed evidence
No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.
Public PoC / exploit material ?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.Reference recorded
A structured CVE source labels at least one public reference as exploit material. BlackTree has not independently validated that it is safe, reliable or weaponised.
Likely attack path
a network path → Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion') → disrupt the affected service
Attack surface
Network
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness ?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-776: Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion'). The product uses XML documents and allows their structure to be defined with a Document Type Definition (DTD), but it does not properly control the number of recursive definitions of entities.
CVSS vector ?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
Common Vulnerability Scoring System 3.1: the compact vector below is decoded into plain language.
AVNetworkAttack vector: The vulnerable component can be reached over a network.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.PRNonePrivileges required: The attacker does not need an account or existing privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CNoneConfidentiality impact: No direct loss is represented by this metric.INoneIntegrity impact: No direct loss is represented by this metric.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
NetworkUnauthenticatedDenial of serviceCWE-776Public exploit reference
A
Official authority intelligence
Only matched European and national findings are included. Language selectors and unavailable sources are omitted.
ENISA EUVD · EUVD-2026-13573Official EUVD mapping
0 linked advisory records.
Official EUVD recordBSI · German · WID-SEC-W-2026-1220IBM App Connect Enterprise: Mehrere Schwachstellen
Ein entfernter, anonymer Angreifer kann mehrere Schwachstellen in IBM App Connect Enterprise ausnutzen, um Dateien zu manipulieren, und um einen Denial of Service Angriff durchzuführen.
Official advisoryCERT-FR · French · CERTFR-2026-AVI-0667Multiples vulnérabilités dans les produits IBM
Operational remediation based on structured source evidence.
Status ?Patch availability is based on structured fixed-version fields and authoritative update references. If no fix is verified, check the vendor advisory before making a change.
Patch available
Affected
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2
Fixed
registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
Action
If you are using an earlier version of RHACS, you are advised to upgrade to the version of RHACS mentioned in the synopsis and release notes in order to take advantage of the enhancements, bug fixes, and/or security patches in the release.
Workaround
A mitigation or workaround reference is available from the source linked below; validate it against the affected product and version.
04
Evidence and provenance
Published 20 Mar 2026 · Last source change 25 Mar 2026, 13:57 UTC · CWE-776 · Improper Restriction of Recursive Entity References in DTDs ('XML Entity Expansion')
CVE recordCVE.org · 5.2
CVSS sourceCNA
EPSS source ?The date BlackTree first stored a score for this CVE from the daily FIRST EPSS feed.FIRST · tracked since 2026-08-14
European sourceENISA EUVD · EUVD-2026-13573
Product sourceVendor CSAF · Red Hat Product Security
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD enriched
Core structured fields are present and their contributing authorities are shown above.
Affected versionsThe structured affected or fixed version information changed.
Before
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
After
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
Affected versionsThe structured affected or fixed version information changed.
Before
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
After
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
Affected versionsThe structured affected or fixed version information changed.
Before
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
After
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
Affected versionsThe structured affected or fixed version information changed.
Before
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
After
mta/mta-ui-rhel9 as a component of Migration Toolkit for Applications 8; rhdh/backstage-community-plugin-catalog-backend-module-scaffolder-relation-processor as a component of Red Hat Developer Hub; openshift-gitops-1/argocd-rhel8 as a component of Red Hat OpenShift GitOps; openshift-gitops-1/argocd-rhel9 as a component of Red Hat OpenShift GitOps; container-native-virtualization/kubevirt-console-plugin as a component of Red Hat OpenShift Virtualization 4; container-native-virtualization/kubevirt-console-plugin-rhel9 as a component of Red Hat OpenShift Virtualization 4; ansible-automation-platform/automation-portal as a component of Self-service automation portal 2 · Fixed: registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:5533b87f5a3c9df67608236393d31507dd2b1f0af0ca787997f9dfed44222d9d_amd64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:8a3f82a33e522ce518e52411d48475cb47bea153176b833eace73fc24a5b7672_ppc64le as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:c7d8d836b92a80d6d02a8ea73a69d773b0983d9bae4f217b8f4adb39a0e00d86_s390x as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:d9d95fe1014cf1632681171d34f760a1d7ffe81c81df1fb9942c1a08f4ffb857_arm64 as a component of Red Hat Advanced Cluster Security 4.8; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:433c4926f5a93402642d459c627a1ecf65e101a42bcce4042c36858205b93be9_arm64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:96d11ff01950830eac7df626092e231ab3ff78f678fb6ddb3e88bf58dd2bda65_ppc64le as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:e4554b911cb8df3f181ae1c3e8d3d69b2feb2985f71de1e782575b4f92165f96_amd64 as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/advanced-cluster-security/rhacs-main-rhel8@sha256:f6c3977c2d562656928aa1b8477b98174a8d26db903954bdfc766cc8dfc17c7d_s390x as a component of Red Hat Advanced Cluster Security for Kubernetes 4.9; registry.redhat.io/rhdh/rhdh-hub-rhel9@sha256:bb763e2b7a9d101f73b03b9e1c5688e7034fd9d31413e890817bd4098a7d42f9_amd64 as a component of Red Hat Developer Hub 1.8; registry.redhat.io/odf4/cephcsi-rhel9@sha256:1f667d61ae5529b52b7537b23a290cdca9e91133864f2ff7518b2480cdbc40b7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:2810bac86702f5bbbd727a12e99da6976f6166f1da9f01eb4d35ae41f381bbbe_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/cephcsi-rhel9@sha256:8f5f80623fb00df86739b4d32fa50fdcffc7a68f0895eb40db5867e76ee8630c_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:3a9e650dc700faace1b7d599278b12bdf074a02eddbcb1efc2351b6f77472bc7_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:4635e9284dc4d215ac452eb152b14009ff239f3ec50eff4e6325d0e7d55e2d31_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-core-rhel9@sha256:f771d1fea7a88644164e85139f130fc9be24ee6bfce654e37681e0d5f22e5310_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:1facb3f3c57272706e1313a8ce2a4b3764b78e2cb8829082db9fbced2431a8b2_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b7f926dbd219b0fed4b4281ca01621512a9a3bdc67278f481892f1ee8dec293b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:b82562b8ae40af8096c5744223f7c06897a3b271b03ecd9bf1b03c563e671272_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/mcg-rhel9-operator@sha256:d143712b074ec9605568f4c9a636a3658819438f49de72b452ab4e123d5abec6_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:12a906ca4e071316e22b2960931f24da4042267ae78103c52e32e7d7d5e0534a_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:1eacd0e1955894ab65a0f3a0ebec0c07ed9d27e74ac30b65404e5a97cfb3c223_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-console-rhel9@sha256:4f5f506f9773667fa5fceadf0c1cc96793d1577a48af7d98958f32afba062a8e_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:06f56561d2a470ca2bf03c17cc5f15d0534c80ca600ebddf4f62a8a29ddf0c18_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3367e3826c640c0c65ee53d8ef29f47cfba50f49373382b7d8c0dcb6a17abf36_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:3ca101c54a0514e10ae8125002cfb63c1d48d88c8bf49b5fa6f7b96a527f3527_arm64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-client-rhel9-operator@sha256:d6e19cf7e9e1f3011bf7f04f5544cce4bb1c90269d7d912431005421a201641d_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:37f2798d3763aae733494ff714156c5e145a936473e4a536badbdfcb673ddb6b_ppc64le as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:6f74c913e7c2780103d9d8bf5ae17044197ba3f83ed46f27a1d557d265410113_amd64 as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-metrics-exporter-rhel9@sha256:8cfeadba40de68afbd97024f9213d9fa96876493d9dcc9c591bfcf236a1c044e_s390x as a component of Red Hat Openshift Data Foundation 4.16; registry.redhat.io/odf4/ocs-rhel9-operator@sha256:7a442df31d13ba3d69018b23d7c4076e9d094ee47ff9c1fc7803affe5e97d007_arm64 as a component of Red Hat Openshift Data Foundation 4.16; and 580 more
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
CVE-2026-33036: fast-xml-parser affected by numeric entity expansion bypassing all entity expansion limits (incomplete fix for CVE-2026-26278) | BlackTree