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

nanoid: Integer Overflow or Wraparound

ai · nanoid

7.4HighCVSS 3.1
Recommended action
Within 7 days

High technical severity; 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-73086 · CSAF 2.0 · revision 3 · finalRed Hat Product Securitynanoid: nanoid: Predictable ID generation due to integer overflow
67 known affected

The vendor explicitly identifies these products as affected by this CVE.

  • rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers
  • network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator
  • workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator
  • workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator
  • workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator
  • openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed
  • openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed
  • openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed
  • openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed
  • openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines
Summary
A flaw was found in nanoid, a JavaScript library for generating unique string IDs. A remote attacker could exploit an integer overflow vulnerability by providing a specific input to the `nanoid(size)` function. This issue causes the internal random number generator to become predictable, leading to the generation of identical identifiers for session tokens, security tokens (Cross-Site Request Forgery (CSRF) tokens), and API keys. Such predictability could allow an attacker to bypass security measures that rely on unique and random identifiers.
Remediation
Before you apply this update, make sure all previously released errata that are relevant to your system are applied. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258
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-56554

No EUVD known-exploited evidence

nanoid: Integer Overflow or Wraparound

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.4 · CVSS 3.1
Advisory evidence
No linked advisory details stored yet
Recommended actionWithin 7 days

High technical severity; prioritise exposed affected systems while verifying vendor guidance.

Patch available
01

What, why and how

nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.

What

nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.

Why

The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number.

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

nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.

Why

The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number.

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.
None recorded

No exploit-tagged reference or CISA SSVC proof-of-concept state is currently recorded. Research may still exist outside the structured feeds.

Likely attack path
a network path → Integer Overflow or Wraparound → 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
High: exploitation depends on specific conditions
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-190

CWE-190: Integer Overflow or Wraparound. The product performs a calculation that can produce an integer overflow or wraparound when the logic assumes that the resulting value will always be larger than the original value. This occurs when an integer value is incremented to a value that is too large to store in the associated representation. When this occurs, the value may become a very small or negative number.

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:H/PR:N/UI:N/S:U/C:H/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.ACHighAttack complexity: Successful exploitation depends on specific conditions outside the attacker's direct control.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.CHighConfidentiality impact: A successful attack can cause a major loss.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
Stolen credentials, tokens and legitimate administration functions may provide continued access without deploying a large custom toolset.
NetworkUnauthenticatedCWE-190
A

Official authority intelligence

Only matched European and national findings are included. Language selectors and unavailable sources are omitted.

ENISA EUVD · EUVD-2026-56554Official EUVD mapping

nanoid: Integer Overflow or Wraparound

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
rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; grafana-graphite as a component of Red Hat Enterprise Linux 8; and 37 more
Fixed
registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 53 more
Action
Before you apply this update, make sure all previously released errata that are relevant to your system are applied. For details on how to apply this update, refer to: https://access.redhat.com/articles/11258
Workaround
No verified workaround is recorded. If business-safe, reduce exposure to the affected interface and allow only trusted sources until authoritative guidance is available.
04

Evidence and provenance

Published 11 Aug 2026 · Last source change 12 Aug 2026, 14:29 UTC · CWE-190 · Integer Overflow or Wraparound

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-56554
Product sourceVendor CSAF · Red Hat Product Security
Remediation sourceVendor CSAF · Red Hat Product Security
CWE sourceCNA
NVD statusNVD received

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
    rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; grafana-graphite as a component of Red Hat Enterprise Linux 8; and 37 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 50 more
    After
    rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; grafana-graphite as a component of Red Hat Enterprise Linux 8; and 37 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 53 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; and 40 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 45 more
    After
    rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; grafana-graphite as a component of Red Hat Enterprise Linux 8; and 37 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 50 more
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; and 43 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 45 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; grafana-azure-monitor as a component of Red Hat Enterprise Linux 8; grafana-cloudwatch as a component of Red Hat Enterprise Linux 8; grafana-elasticsearch as a component of Red Hat Enterprise Linux 8; and 40 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 45 more
    Red Hat Product Security
  4. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; and 46 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; goose.src as a component of Red Hat Enterprise Linux 10; grafana as a component of Red Hat Enterprise Linux 8; and 43 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 45 more
    Red Hat Product Security
  5. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; and 52 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; and 46 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    Red Hat Product Security
  6. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; and 53 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; and 52 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    Red Hat Product Security
  7. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; and 54 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; and 53 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    Red Hat Product Security
  8. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 55 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/openshift4/ose-console-rhel9@sha256:2ef5f2a50dbddb6bf24ea8f92b052d40d5a47b4900cb27654347a37e8f18b062_s390x as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:327a792957e8535e0239aef12350e34b2f736f260d7291dbc84865c43e351baf_amd64 as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:9b2766b1b059a6aedd98cc1abb9d6671b14e591cd4b69842affe9a040f4b5d9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:fc24d3f2ac145f78f04342222d2a69bc334887b45e5ea508e38b4787be681fa6_arm64 as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; and 17 more
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; and 54 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:1f0c691b68fd10948199249a142dfcd7fb438d856a1a4f365d490c452be35e83_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:446a14ecab55ac435bca583621066d92f8ac7c922585424b8d3a50a2e7ebb0e0_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:8d485dda383d81506838aa7e6565bbd9fb743fe03552a507dfc9ec46459060d6_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:a7540d4c501e1d1215ebff1f0b572f74e3b9a55bffb1ebfccb9546307d67116b_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.11; registry.redhat.io/rhacm2/console-rhel9@sha256:2233c4a1a01080593c5f3b8a6480a8342e68b480aef8913502dab9f83c6791d2_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:235b69fbd5ff782ddb2be68e345855456b7cb81c5a88facceb3fd1a94bd880dc_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:635b9d6b3667429f78426d779053b7611b1a40ab33c6849b57baa3e310bad0dc_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:a480256afe3de0e7adb2b5966029d95a3cd0b76ab079a14624081f36aea46990_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.13; registry.redhat.io/rhacm2/console-rhel9@sha256:7a09fd1d65f706e0e9ab1403dc8600abfa528225e816ef3814f0877f64f7f8e5_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:852a0eb10674a84b3110c4f8a589495a2f78288a415230d6aa07c52810cc1950_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:a397a7414e0e4f0ab48084a5d4c5f6ad98add7516125be7de032244c0bea6b24_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:d5eb5d24a165c9b7bbd983c208bff7c66e755b3854fa77c600bacfbb7bfb37f7_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.14; registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:13ce75b9a8887eb81deed4d70d215cb4c08e6534ee20d7675759552006fd03a1_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:2a78a7196bfcf24869ec478fd30861b2606d112d930cc89bac4896be4ef37a15_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:5b0496138b3fd32d7032f33ea96d58f93ca0e56e817914b67e13c6fceb10a0dd_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/rhacm2/console-rhel9@sha256:d33ea91405767b66b7a0e8b28b66a2a97727cbb0759b2df902735696af5307dd_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.17; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; and 33 more
    Red Hat Product Security
  9. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 58 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11.0
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 55 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/openshift4/ose-console-rhel9@sha256:2ef5f2a50dbddb6bf24ea8f92b052d40d5a47b4900cb27654347a37e8f18b062_s390x as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:327a792957e8535e0239aef12350e34b2f736f260d7291dbc84865c43e351baf_amd64 as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:9b2766b1b059a6aedd98cc1abb9d6671b14e591cd4b69842affe9a040f4b5d9a_ppc64le as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/openshift4/ose-console-rhel9@sha256:fc24d3f2ac145f78f04342222d2a69bc334887b45e5ea508e38b4787be681fa6_arm64 as a component of Red Hat OpenShift Container Platform 4.22; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; and 17 more
    Red Hat Product Security
  10. Affected versionsThe structured affected or fixed version information changed.
    Before
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 69 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 58 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11.0; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11.0
    Red Hat Product Security
  11. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; and 70 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    After
    grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; redhat-certification-cnf.src as a component of Red Hat Certification Program for Red Hat Enterprise Linux 9; and 69 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    Red Hat Product Security
  12. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; and 74 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; and 70 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    Red Hat Product Security
  13. Vendor guidanceAuthoritative vendor guidance changed from authoritative remediation link to authoritative remediation link.
    Before
    authoritative remediation link
    After
    authoritative remediation link
    Red Hat Product Security
  14. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 67 more · Fixed: registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; rhbk-quarkus-dist.zip as a component of Red Hat Build of Keycloak; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; and 74 more · Fixed: registry.redhat.io/rhacm2/console-rhel9@sha256:75910c4198336f86a0b345b116437dd608a35a975a0c92c684a77945b464a66d_ppc64le as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:84d7d33ed45b6ea7b45c9fb8518caaeaa6b936751199f9f728a18e774d3f4eeb_amd64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:d5c7fedf882678fe9465566f983532da1ec2d90a1c3b7cd00b3ca29234de97b4_arm64 as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/rhacm2/console-rhel9@sha256:ff46410d53fb779b172325276dd3223491fa7824324a2847d7f44e6fc39a3feb_s390x as a component of Red Hat Advanced Cluster Management for Kubernetes 2.16; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:31c72f35b5d170209dbf1d0801f12b0671283765157ec690774fc50aefde944e_ppc64le as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:5b9db2e01b7e7d9d86ba36e523ea5df8f36c9a2ad6d210db4ab8cd24995863cb_s390x as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:a076ba3192b7408fdb8484225d3591be134c95bdf8182095e62e83eb46289435_amd64 as a component of multicluster engine for Kubernetes 2.11; registry.redhat.io/multicluster-engine/console-mce-rhel9@sha256:b25cd815f89acc196fa6060bcfb155a19b1ae49a5e2911ac23d6548a499bd34c_arm64 as a component of multicluster engine for Kubernetes 2.11
    Red Hat Product Security
  15. Vendor guidanceAuthoritative vendor guidance changed from authoritative remediation link to authoritative remediation link.
    Before
    authoritative remediation link
    After
    authoritative remediation link
    Red Hat Product Security
  16. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 75 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 67 more · Fixed: registry.redhat.io/ansible-automation-platform/automation-portal@sha256:1ea7e595d09aba21055ea861f403dcac6bcb031dcfb8166f917b695d7829c5ab_amd64 as a component of Red Hat Ansible Automation Platform 2.1; registry.redhat.io/ansible-automation-platform/automation-portal@sha256:9595023cdb01463dcab779b7e041987c6d00769bb174f43aadd477293a521508_amd64 as a component of Red Hat Ansible Automation Platform 2.2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    Red Hat Product Security
  17. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 81 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 75 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    Red Hat Product Security
  18. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 101 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; nanoid as a component of Cryostat 4; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; multicluster-engine/console-mce-rhel9 as a component of Multicluster Engine for Kubernetes; network-observability/network-observability-console-plugin-pf5-rhel9 as a component of Network Observability Operator; workload-availability/node-healthcheck-must-gather-rhel9 as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-operator-bundle as a component of Node HealthCheck Operator; workload-availability/node-healthcheck-rhel9-operator as a component of Node HealthCheck Operator; openshift-lightspeed/lightspeed-agentic-console-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-419-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-pf5-rhel9 as a component of OpenShift Lightspeed; openshift-lightspeed/lightspeed-console-plugin-rhel9 as a component of OpenShift Lightspeed; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-console-plugin-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel8 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-ui-rhel9 as a component of OpenShift Pipelines; rhacm2/console-rhel9 as a component of Red Hat Advanced Cluster Management for Kubernetes 2; amq-broker-bin.zip as a component of Red Hat AMQ Broker 7; amq-broker-maven-repository.zip as a component of Red Hat AMQ Broker 7; ansible-automation-platform-26/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-27/gateway-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-eda-controller.src as a component of Red Hat Ansible Automation Platform 2; automation-gateway.src as a component of Red Hat Ansible Automation Platform 2; automation-platform-ui.src as a component of Red Hat Ansible Automation Platform 2; nanoid as a component of Red Hat build of Apache Camel - HawtIO 4; rhaf-camel-for-springboot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; rhaf-camel-spring-boot-maven-repository.zip as a component of Red Hat build of Apache Camel for Spring Boot 4; apicurio/apicurio-registry-ui-rhel8 as a component of Red Hat build of Apicurio Registry 3; and 81 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:39e32df84e26a6d882fd2f18d6a9981e5dd77ddfcd7fc18f1553d0ba726019a3_amd64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:8268709ddc6c9537cb5f0ab978b7afc507fdbf035723327e3f542b10eef2b25c_arm64 as a component of Red Hat Discovery 2; grafana12-4-main@aarch64 as a component of Red Hat Hardened Images; grafana12-4-main@src as a component of Red Hat Hardened Images; grafana12-4-main@x86_64 as a component of Red Hat Hardened Images; grafana13-1-main@aarch64 as a component of Red Hat Hardened Images; grafana13-1-main@src as a component of Red Hat Hardened Images; grafana13-1-main@x86_64 as a component of Red Hat Hardened Images; jaeger-main@aarch64 as a component of Red Hat Hardened Images; jaeger-main@src as a component of Red Hat Hardened Images; jaeger-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-13-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-13-main@src as a component of Red Hat Hardened Images; prometheus3-13-main@x86_64 as a component of Red Hat Hardened Images; prometheus3-5-main@aarch64 as a component of Red Hat Hardened Images; prometheus3-5-main@src as a component of Red Hat Hardened Images; prometheus3-5-main@x86_64 as a component of Red Hat Hardened Images
    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-73086 · cve.blacktree.nl