BlackTreeIndependent security intelligence
← Back to the CVE catalogue
Full vulnerability report · 2026
CVE-2026-33487High confidence

goxmldsig has validateSignature Loop Variable Capture Signature Bypass

russellhaering · goxmldsig

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
Direct vendor intelligence

Authoritative vendor CSAF and VEX advisories

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-33487 · CSAF 2.0 · revision 3 · finalRed Hat Product Securitygithub.com/russellhaering/goxmldsig: goxmlsig: Integrity bypass due to incorrect XML Digital Signature validation via loop variable capture issue
32 fixed

The vendor explicitly identifies these products or versions as containing the fix.

  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5
  • registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5
Summary
A flaw was found in goxmlsig, a Go library for XML Digital Signatures. This vulnerability arises from a programming error, specifically a loop variable capture issue, within the `validateSignature` function. When processing XML Digital Signatures, this error can cause the system to incorrectly validate the signature, potentially allowing an attacker to bypass integrity checks. This issue affects Go versions before 1.22 or projects using older `go.mod` configurations.
Remediation
For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation: https://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index
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-16281

No EUVD known-exploited evidence

goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element's ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.

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
7.5 · CVSS 3.1
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

goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element's ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.

What

goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element's ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.

Why

The product does not verify, or incorrectly verifies, the cryptographic signature for data.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element's ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.

Why

The product does not verify, or incorrectly verifies, the cryptographic signature for data.

How

An attacker operating through a network path may attempt exploitation without authentication or user interaction. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

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 Verification of Cryptographic Signature → cause the confidentiality, integrity or availability impact described by the vendor
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-347

CWE-347: Improper Verification of Cryptographic Signature. The product does not verify, or incorrectly verifies, the cryptographic signature for data.

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:H/A:N

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.IHighIntegrity impact: A successful attack can cause a major loss.ANoneAvailability impact: No direct loss is represented by this metric.
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.
NetworkUnauthenticatedCWE-347Public 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-16281Official EUVD mapping

goxmlsig provides XML Digital Signatures implemented in Go. Prior to version 1.6.0, the `validateSignature` function in `validate.go` goes through the references in the `SignedInfo` block to find one that matches the signed element's ID. In Go versions before 1.22, or when `go.mod` uses an older version, there is a loop variable capture issue. The code takes the address of the loop variable `_ref` instead of its value. As a result, if more than one reference matches the ID or if the loop logic is incorrect, the `ref` pointer will always end up pointing to the last element in the `SignedInfo.References` slice after the loop. goxmlsig version 1.6.0 contains a patch.

Official EUVD record
03

Patch and workaround

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
< 1.6.0
Fixed
registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.3; and 2 more
Action
For more details, see the Red Hat Advanced Cluster Management for Kubernetes documentation: https://docs.redhat.com/documentation/en-us/red_hat_advanced_cluster_management_for_kubernetes/2.12/html/multicluster_global_hub/index
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 26 Mar 2026 · Last source change 7 Sept 2026, 12:04 UTC · CWE-347 · Improper Verification of Cryptographic Signature

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-16281
Product sourceCNA
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD modified after enrichment

Core structured fields are present and their contributing authorities are shown above.

Material change intelligence

What changed after publication

View recent updates →
  1. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.1; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.3; and 2 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Red Hat multicluster global hub 1.6.0; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Red Hat multicluster global hub 1.6.0; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.1; and 2 more
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Red Hat multicluster global hub 1.6.0; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Red Hat multicluster global hub 1.6.0; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Red Hat multicluster global hub 1.6.0; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Red Hat multicluster global hub 1.6.0; and 2 more
    Red Hat Product Security
  4. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.1; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.6; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.3; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Red Hat multicluster global hub 1.6.0; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Red Hat multicluster global hub 1.6.0; and 2 more
    Red Hat Product Security
  5. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.2; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.1; and 2 more
    Red Hat Product Security
  6. Affected versionsThe structured affected or fixed version information changed.
    Before
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:cdd8450206b5ffc96f1ca6e0b3ab7b582abf47aad8ece474eb14a035fb355d35_s390x as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e893adfe11d4ace5f9ae4dc1d1b31a8a3c5d1a0c42f033f4d34c452ec294c608_ppc64le as a component of Multicluster Global Hub 1.4.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Red Hat multicluster global hub 1.5.1; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Red Hat multicluster global hub 1.6.0; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Red Hat multicluster global hub 1.6.0; and 2 more
    After
    Fixed: registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:1128dffb3133bd5dc86dd3e4d74d807aa3567acf7d9eaf8c94cb522efb2c39ec_arm64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:61e24ffe7c4bf801e8ca4650befe3e6bc99235f31445d76d790bab3026ead0ff_s390x as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:830a5fffea2982f059927ae3eb9dbe474a4d830175395e1dd32800d08304bc22_ppc64le as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9db7d9dc19cb6cf1392ea70441d1eb98535f9cfeb478230156ab11f556657b02_amd64 as a component of Multicluster Global Hub 1.3.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:8c03495da4214e70589e238a60815c265223952470da6d80034e2f83de5c3c8e_ppc64le as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:d91359dca7bc04e59f4f1c0d2e5c8a2ecfd92d3499636be065ec89e8ad2eac4f_amd64 as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:e26dfe26504fa24a04d4e0372461414f6f73c601b7f2f4e7f5e2e520d3281ce8_arm64 as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:fc03a86fe38f6d3654c013dd47b330fbd0169f239fb21fd3c456ab78b6df3166_s390x as a component of Multicluster Global Hub 1.5.4; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:05f069047e37620fa1ea72f0c0cbea205f27a4a4594c674b59d6dfa2a18f9f26_ppc64le as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:11e5a558fb1a9ecae142c55512fd4ab028b9162be4ae491f491ee030c6206194_arm64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:76d186f4c2ffdf0d62399ff9f3c78bee536e9193647d571fcb2123743f163c50_s390x as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:9a70b0f09751c7b595b2372275a7be806768632722b921ad828f2d30db9fedde_amd64 as a component of Multicluster Global Hub 1.6.5; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:2a6b24698fc9507613d57ba8cf0053dc29fe2c0cb6ab7c2eddd2efaf5e8b6a81_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:559bf1a421c22038236d883cfc0629a45f76b1552a85c95c2a6d1fcf2112dc8c_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a4ca7e559443c13e2427567959cdc305bfc7839bfe3e222b43f9a5024f350468_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:c498d18de777b04f5849a688951372fae72701cd4309b343ede04b6983ce35b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:08670904b912776ccbe1b62d7e9e0bbbf376e54c33b34763f2b78f88e395ad5d_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:256d30d727563fd38b23bf8559df0acf66668b261bb77881a5480453d4f119a8_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:3bae58887e2e06420a85586b71ad13eeba2bfd1f42a5eb744c22762528b346b1_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/rhacm2/acm-grafana-rhel9@sha256:a97937bfce590d78b46b3b3e7ac1cc23c34847b462dc84bdec376a6f525addd0_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.15; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:45982222d809b7e77adf13a750f5e5dca63aa0240d76b7d496f1e2676f71c87f_amd64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:567aaa242d33749676a4da80d41b6e3b98b0d589307b59c975b803e87dfef2f2_arm64 as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:7ba98db93e1874366433a09d4c63c302ea645431b7666d31c6664acd79cf60b6_ppc64le as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:b567fe32d1e685fbad4625ed93b2592821590117d4722cb7a398005be87a4654_s390x as a component of Red Hat OpenShift GitOps 1.18; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:12c586d1f3bfb82db15f63f066fa1aa1745939fce43d6f811210f46b098550fa_amd64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:38527ce3011bfa09a8764727233977519acaefd795c7b177eb8cda5fbe052628_arm64 as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:a8964feb57a233ad7cafd9a95136acecd1bc78cf538a2725aceb8446bd0b96c2_s390x as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/openshift-gitops-1/dex-rhel8@sha256:c1eb1813dc1a5936727f0127d8515114d990e0b2afd7f1104c7b8b3cae26bcce_ppc64le as a component of Red Hat OpenShift GitOps 1.19; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:0465ebb0af8b850f3266a5e3400b269d420a6280cb6b883a606f9b588c102acc_amd64 as a component of Red Hat multicluster global hub 1.4.2; registry.redhat.io/multicluster-globalhub/multicluster-globalhub-grafana-rhel9@sha256:7e2f0f5047b68c0c095994c26952a22e282c5a903cdd777310ef2bc7341cd22e_arm64 as a component of Red Hat multicluster global hub 1.4.2; and 2 more
    Red Hat Product Security
Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
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.
Free version - for non-commercial use only.CVE-2026-33487 · cve.blacktree.nl