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

webpack-dev-middleware Path Traversal via Offset Slice on a Non-Slash-Terminated publicPath

webpack · webpack-dev-middleware

8.3HighCVSS 4.0
Recommended action
Within 7 days

High technical severity with public exploit material referenced by a structured source; prioritise exposed affected systems while verifying vendor guidance.

Patch available
Direct vendor intelligence

Authoritative vendor CSAF and VEX advisories

Structured product status and remediation from the issuing vendor. Product-state explanations are always visible; large lists can be searched or downloaded.

1 current
CVE-2026-76844 · CSAF 2.0 · revision 3 · finalRed Hat Product Securitywebpack-dev-middleware: webpack-dev-middleware: Information Disclosure via Path Traversal
58 known affected

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

  • gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3
  • rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers
  • 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
  • workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator
  • openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2
  • ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2
Summary
A flaw was found in webpack-dev-middleware. A remote attacker can exploit a path traversal vulnerability when the configured publicPath lacks a trailing slash. By sending a specially crafted request, the attacker can bypass a security guard, allowing the middleware to resolve files from one directory above the intended output path. This could lead to information disclosure if the middleware is configured to use the physical filesystem.
Remediation
The containers required to run Discovery can be installed through discovery-installer RPM. See the official documentation for more details.
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-64850

No EUVD known-exploited evidence

webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize(`./${pathname}`), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.

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

High technical severity with public exploit material referenced by a structured source; prioritise exposed affected systems while verifying vendor guidance.

Patch available
01

What, why and how

webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize(`./${pathname}`), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.

What

webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize(`./${pathname}`), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.

Why

Attacker-controlled path data is not constrained to the intended directory before the application accesses a file.

How

An attacker operating through a network path may attempt exploitation when the stated preconditions are met. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize(`./${pathname}`), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.

Why

Attacker-controlled path data is not constrained to the intended directory before the application accesses a file.

How

An attacker operating through a network path may attempt exploitation when the stated preconditions are met. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

CVSS severity, EPSS forecast probability, public exploit material and CISA-confirmed exploitation are separate signals.

Observed exploitation
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
No confirmed evidence

No CISA KEV match was present at the last successful refresh. This means no confirmation from that source, not proof of no exploitation.

Public PoC / exploit material
?Confirmed exploitation and public exploit material are separate signals. Attacks can occur without public proof-of-concept or exploit code.
Reference recorded

CISA Vulnrichment records proof-of-concept exploitation in its SSVC data. BlackTree has not independently executed or validated exploit material.

Likely attack path
a network path → Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Network
Privileges required
None: unauthenticated exploitation is possible
User interaction
Passive interaction required
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Not a CVSS 4.0 base metric
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-22

CWE-22: Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal'). The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:H/VI:N/VA:N/SC:H/SI:N/SA:N

Common Vulnerability Scoring System 4.0: the compact vector below is decoded into plain language.

AVNetworkAttack vector: The vulnerable component can be reached over a network.ACLowAttack complexity: No specialised conditions are required beyond attacker-controlled input.ATNoneAttack requirements: No additional deployment or execution condition is required.PRNonePrivileges required: The attacker does not need an account or existing privileges.UIPassiveUser interaction: A user must unknowingly interact with the vulnerable system.VCHighVulnerable-system confidentiality: A successful attack can cause a major loss.VINoneVulnerable-system integrity: No direct loss is represented by this metric.VANoneVulnerable-system availability: No direct loss is represented by this metric.SCHighSubsequent-system confidentiality: A successful attack can cause a major loss.SINoneSubsequent-system integrity: No direct loss is represented by this metric.SANoneSubsequent-system availability: No direct loss is represented by this metric.
Post-exploitation / living off the land
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
NetworkUnauthenticatedCWE-22Public exploit reference
A

Official authority intelligence

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

ENISA EUVD · EUVD-2026-64850Official EUVD mapping

webpack-dev-middleware resolves a request to a local file in getFilenameFromUrl by testing the request pathname against a traversal guard and then slicing it at a fixed character offset. The guard, UP_PATH_REGEXP applied to path.normalize(`./${pathname}`), only matches ".." that stands as a whole path segment, while the containment test is the string comparison pathname.startsWith(publicPathPathname) and the file path is built as path.join(outputPath, pathname.slice(publicPathPathname.length)). When the configured publicPath has no trailing slash, a request such as GET /assets../.env against publicPath /assets yields the pathname /assets../.env, whose only dot-dot sits inside the segment "assets.." and so passes the guard, but the offset slice cuts within that segment and hands "../.env" to path.join, resolving one directory above outputPath. Reading a file from that path requires the middleware to be backed by the physical filesystem, which happens when writeToDisk is true or a custom outputFileSystem is supplied, since the default memfs volume holds only build output. Traversal depth is limited to a single directory because a separately delimited dot-dot segment is collapsed during URL parsing before the guard runs. The default publicPath value of "auto" resolves to "/" and is not affected. This is an incomplete fix for CVE-2024-29180: the guard and offset slice were introduced by that fix and are present in every release from 5.3.4, 6.1.2 and 7.1.0 onward.

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
gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src as a component of Red Hat Ansible Automation Platform 2; rhaf-hawtio-maven-repository.zip as a component of Red Hat build of Apache Camel - HawtIO 4; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; 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 28 more
Fixed
registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
Action
The containers required to run Discovery can be installed through discovery-installer RPM. See the official documentation for more details.
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 24 Aug 2026 · Last source change 26 Aug 2026, 18:22 UTC · CWE-22 · Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal')

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-25
European sourceENISA EUVD · EUVD-2026-64850
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
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src as a component of Red Hat Ansible Automation Platform 2; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; 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 27 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src as a component of Red Hat Ansible Automation Platform 2; rhaf-hawtio-maven-repository.zip as a component of Red Hat build of Apache Camel - HawtIO 4; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; 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 28 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; grafana as a component of Red Hat Enterprise Linux 8; and 31 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src as a component of Red Hat Ansible Automation Platform 2; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; 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 27 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; grafana as a component of Red Hat Enterprise Linux 8; and 34 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; grafana as a component of Red Hat Enterprise Linux 8; and 31 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    Red Hat Product Security
  4. Affected versionsThe structured affected or fixed version information changed.
    Before
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2; ansible-automation-platform-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; and 40 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-scaffolder-backend-module-orchestrator as a component of Red Hat Developer Hub; rhdh/rhdh-hub-rhel9 as a component of Red Hat Developer Hub; grafana as a component of Red Hat Enterprise Linux 8; and 34 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    Red Hat Product Security
  5. 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
  6. Remediation statusRemediation status changed from Mitigation available to Patch available.
    Before
    Mitigation available
    After
    Patch available
    Red Hat Product Security
  7. Affected versionsThe structured affected or fixed version information changed.
    Before
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 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-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; openshift-service-mesh/kiali-operator-bundle as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9-operator as a component of OpenShift Service Mesh 3; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; and 61 more
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 as a component of Node HealthCheck Operator; openshift-pipelines/pipelines-console-plugin-pf5-rhel9 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; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 2; ansible-automation-platform-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; redhat-datagrid-maven-repository.zip as a component of Red Hat Data Grid 8; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-lightspeed-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-backend-module-loki as a component of Red Hat Developer Hub; rhdh/red-hat-developer-hub-backstage-plugin-orchestrator-form-widgets as a component of Red Hat Developer Hub; and 40 more · Fixed: registry.redhat.io/discovery/discovery-ui-rhel9@sha256:480c69f89b45c714ec13a7901bc8615a2fa3f4622c889cd023d80a6278855a58_arm64 as a component of Red Hat Discovery 2; registry.redhat.io/discovery/discovery-ui-rhel9@sha256:def96951197558d6c5d1784a7971b0e37b44025c60d9b59fe6797085e39c382a_amd64 as a component of Red Hat Discovery 2
    Red Hat Product Security
  8. Affected versionsThe structured affected or fixed version information changed.
    Before
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 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-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; openshift-service-mesh/kiali-operator-bundle as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9-operator as a component of OpenShift Service Mesh 3; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; and 86 more
    After
    gatekeeper/gatekeeper-rhel9 as a component of Gatekeeper 3; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; workload-availability/node-remediation-console-rhel8 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-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; openshift-service-mesh/kiali-operator-bundle as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9-operator as a component of OpenShift Service Mesh 3; 3scale-amp2/system-rhel8 as a component of Red Hat 3scale API Management Platform 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-24/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-25/lightspeed-rhel8 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-26/lightspeed-rhel9 as a component of Red Hat Ansible Automation Platform 2; automation-controller.src 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; 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; rh-podman-desktop.git as a component of Red Hat Build of Podman Desktop; rhceph/rhceph-4-dashboard-rhel8 as a component of Red Hat Ceph Storage 4; and 61 more
    Red Hat Product Security
  9. Public exploit evidencePublic exploit evidence changed from No public exploit to Public exploit reference.
    Before
    No public exploit
    After
    Public exploit reference
    CVE.org
  10. ENISA EUVD mappingEUVD-2026-64850 was added to the official ENISA EUVD mapping for this CVE.
    Before
    not recorded
    After
    {"euvdId":"EUVD-2026-64850"}
    ENISA EUVD
  11. Catalogue recordCVE added to the BlackTree catalogue.
    CNA
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-76844 · cve.blacktree.nl