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

ip-address: Address4 decodes leading-zero octets as decimal while resolvers decode them as octal, allowing SSRF and trust-boundary bypass

beaugunderson · ip-address

7.7HighCVSS 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
Distribution package intelligence

Ubuntu vendor package status

Canonical’s release and source-package findings are shown separately from local repository availability.

1 package state
Repository candidate not checked

A published vendor fix does not prove that a matching update is enabled and installable on a particular asset. Confirm the local package candidate before scheduling remediation.

Ubuntu releaseSource packageVendor stateFixed versionEvidence
Ubuntu 24.04 LTSnoble · standard archivenode-ip-addressUnder evaluationCanonical reports that the package might be affected and still needs evaluation or fixing.Not published in this feedCanonical record ↗Source updated 8 Sept 2026
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-69192 · CSAF 2.0 · revision 3 · finalRed Hat Product Securityip-address: ip-address: Inconsistent IP address parsing leads to Server-Side Request Forgery (SSRF) and trust-boundary bypass
19 known affected

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

  • cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4
  • exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence
  • rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers
  • ip-address as a component of Red Hat AMQ Broker 7
  • ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2
  • ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2
  • ip-address 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
  • rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1
  • rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3
  • rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3
  • rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3
Summary
A flaw was found in the `ip-address` library. This library incorrectly interprets IPv4 address octets with leading zeros as decimal, while standard network parsers interpret them as octal. This inconsistency can cause applications to misclassify network targets, allowing a remote attacker to bypass security measures like Server-Side Request Forgery (SSRF) filters and potentially gain unauthorized access to internal systems.
Remediation
For details on how to apply this update, which includes the changes described in this advisory, 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-52419

No EUVD known-exploited evidence

ENISA has published the identifier mapping but no EUVD description has been stored yet.

EUVD state
Present in the current official mapping
Known exploitation
Not present in the current ENISA EUVD known-exploited dataset. This is not proof of no exploitation.
ENISA score
Not supplied in the stored EUVD record
Advisory evidence
No linked advisory details stored yet
Recommended actionWithin 7 days

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

Patch available
01

What, why and how

ip-address is a library for parsing and manipulating IPv4 and IPv6 addresses in JavaScript. Prior to 10.3.1, Address4 accepts an octet written with a leading zero and decodes it as decimal, while the WHATWG URL host parser, inet_aton, and getaddrinfo all decode a leading zero as octal. The library and the network stack therefore disagree about which host a string names. new Address4('012.0.0.1') reports correctForm() of 12.0.0.1 and isPrivate() of false, but fetch('http://012.0.0.1/') connects to 10.0.0.1. An application that builds a network trust-boundary decision on these checks, for example a filter intended to block Server-Side Request Forgery, or SSRF, will classify an internal target as external and allow the request. The defect is in the parse gate rather than in any one classifier, so every consumer of Address4 inherits it: isPrivate(), isLoopback(), isLinkLocal(), isCGNAT(), isInSubnet(), isHostInSubnet(), and correctForm() are all computed from the mis-decoded octets. This issue is fixed in version 10.3.1.

What

ip-address is a library for parsing and manipulating IPv4 and IPv6 addresses in JavaScript. Prior to 10.3.1, Address4 accepts an octet written with a leading zero and decodes it as decimal, while the WHATWG URL host parser, inet_aton, and getaddrinfo all decode a leading zero as octal. The library and the network stack therefore disagree about which host a string names. new Address4('012.0.0.1') reports correctForm() of 12.0.0.1 and isPrivate() of false, but fetch('http://012.0.0.1/') connects to 10.0.0.1. An application that builds a network trust-boundary decision on these checks, for example a filter intended to block Server-Side Request Forgery, or SSRF, will classify an internal target as external and allow the request. The defect is in the parse gate rather than in any one classifier, so every consumer of Address4 inherits it: isPrivate(), isLoopback(), isLinkLocal(), isCGNAT(), isInSubnet(), isHostInSubnet(), and correctForm() are all computed from the mis-decoded octets. This issue is fixed in version 10.3.1.

Why

The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

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

ip-address is a library for parsing and manipulating IPv4 and IPv6 addresses in JavaScript. Prior to 10.3.1, Address4 accepts an octet written with a leading zero and decodes it as decimal, while the WHATWG URL host parser, inet_aton, and getaddrinfo all decode a leading zero as octal. The library and the network stack therefore disagree about which host a string names. new Address4('012.0.0.1') reports correctForm() of 12.0.0.1 and isPrivate() of false, but fetch('http://012.0.0.1/') connects to 10.0.0.1. An application that builds a network trust-boundary decision on these checks, for example a filter intended to block Server-Side Request Forgery, or SSRF, will classify an internal target as external and allow the request. The defect is in the parse gate rather than in any one classifier, so every consumer of Address4 inherits it: isPrivate(), isLoopback(), isLinkLocal(), isCGNAT(), isInSubnet(), isHostInSubnet(), and correctForm() are all computed from the mis-decoded octets. This issue is fixed in version 10.3.1.

Why

The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

How

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

02

Exploit reality and attack path

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

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

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

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

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 Input Validation → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Network
Privileges required
None: unauthenticated exploitation is possible
User interaction
None
Attack complexity
Low: no specialised conditions are recorded
Security boundary
Not a CVSS 4.0 base metric
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-20

CWE-20: Improper Input Validation. The product receives input or data, but it does not validate or incorrectly validates that the input has the properties that are required to process the data safely and correctly.

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:N/VC:L/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.UINoneUser interaction: No action by another user is required.VCLowVulnerable-system confidentiality: A successful attack can cause a limited 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-20Public exploit reference
A

Official authority intelligence

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

BSI · German · WID-SEC-W-2026-2923Atlassian Produkte (Bamboo, Bitbucket, Confluence, Crucible, Fisheye, und Jira): Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in Atlassian Bamboo, Atlassian Bitbucket, Atlassian Confluence, Atlassian Crucible, Atlassian Fisheye und Atlassian Jira ausnutzen, um beliebigen Programmcode auszuführen, um einen Denial of Service Angriff durchzuführen, um Informationen offenzulegen, um Dateien zu manipulieren, um einen Cross-Site Scripting Angriff durchzuführen, um einen SQL-Injection Angriff durchzuführen, und um Sicherheitsvorkehrungen zu umgehen.

Official advisory
BSI · German · WID-SEC-W-2026-2816Red Hat Enterprise Linux (nodejs:24): Mehrere Schwachstellen

Ein Angreifer kann mehrere Schwachstellen in Red Hat Enterprise Linux ausnutzen, um SSRF-Angriffe durchzuführen, Sicherheitsmaßnahmen zu umgehen, Daten offenzulegen oder zu manipulieren, möglicherweise beliebigen Code auszuführen oder einen Denial-of-Service-Zustand herbeizuführen.

Official advisory
NCSC-NL · Dutch · NCSC-2026-0325Kwetsbaarheden verholpen in Atlassian producten

The ip-address JavaScript library's Address4 component incorrectly parses IPv4 octets with leading zeros as decimal instead of octal, enabling SSRF bypasses and misclassification of internal addresses, fixed in version 10.3.1.

Official advisory
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
cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2
Fixed
nodejs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-docs-1:22.23.2-1.el10_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs22-1:22.23.2-1.el10_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); and 388 more
Action
For details on how to apply this update, which includes the changes described in this advisory, 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 3 Aug 2026 · Last source change 4 Aug 2026, 13:59 UTC · CWE-20 · Improper Input Validation

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-52419
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
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-docs-1:22.23.2-1.el10_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs22-1:22.23.2-1.el10_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); and 382 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-docs-1:22.23.2-1.el10_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs22-1:22.23.2-1.el10_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); and 388 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 344 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-devel-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-docs-1:22.23.2-1.el10_0.noarch as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-full-i18n-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-libs-debuginfo-1:22.23.2-1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.aarch64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.ppc64le as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.s390x as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs-npm-1:10.9.8-1.22.23.2.1.el10_0.x86_64 as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); nodejs22-1:22.23.2-1.el10_0.src as a component of Red Hat Enterprise Linux AppStream EUS (v. 10.0); and 382 more
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 343 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 344 more
    Red Hat Product Security
  4. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 342 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 343 more
    Red Hat Product Security
  5. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 298 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 342 more
    Red Hat Product Security
  6. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 298 more
    After
    cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 298 more
    Red Hat Product Security
  7. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; and 6 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 291 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; devspaces/code-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/dashboard-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/openvsx-rhel9 as a component of Red Hat OpenShift Dev Spaces; devspaces/udi-rhel9 as a component of Red Hat OpenShift Dev Spaces; satellite/iop-remediations-rhel9 as a component of Red Hat Satellite 6; ansible-automation-platform/bootc-automation-portal-rhel9 as a component of Self-service automation portal 2 · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 298 more
    Red Hat Product Security
  8. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9 as a component of Red Hat OpenShift AI (RHOAI); and 7 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 287 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; openshift4/ose-agent-installer-ui-rhel9 as a component of Red Hat OpenShift Container Platform 4; and 6 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 291 more
    Red Hat Product Security
  9. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; and 8 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 271 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhoai/odh-workbench-codeserver-datascience-cpu-py312-rhel9 as a component of Red Hat OpenShift AI (RHOAI); and 7 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 287 more
    Red Hat Product Security
  10. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs-devel (nodejs:22) as a component of Red Hat Enterprise Linux 8; nodejs-devel (nodejs:24) as a component of Red Hat Enterprise Linux 8; and 51 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 49 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; rhmtc/openshift-migration-ui-rhel8 as a component of Migration Toolkit for Containers; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; rhelai3/bootc-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-gaudi-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/bootc-rocm-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rhelai3/disk-image-cuda-rhel9 as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; rust.src as a component of Red Hat Enterprise Linux AI (RHEL AI) 3; and 8 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 271 more
    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; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs-devel (nodejs:22) as a component of Red Hat Enterprise Linux 8; nodejs-devel (nodejs:24) as a component of Red Hat Enterprise Linux 8; and 51 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 18 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs-devel (nodejs:22) as a component of Red Hat Enterprise Linux 8; nodejs-devel (nodejs:24) as a component of Red Hat Enterprise Linux 8; and 51 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 49 more
    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; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs24 as a component of Red Hat Enterprise Linux 10; nodejs24-devel as a component of Red Hat Enterprise Linux 10; and 58 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 16 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs-devel (nodejs:22) as a component of Red Hat Enterprise Linux 8; nodejs-devel (nodejs:24) as a component of Red Hat Enterprise Linux 8; and 51 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 18 more
    Red Hat Product Security
  13. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs24 as a component of Red Hat Enterprise Linux 10; nodejs24-devel as a component of Red Hat Enterprise Linux 10; and 60 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 14 more
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs24 as a component of Red Hat Enterprise Linux 10; nodejs24-devel as a component of Red Hat Enterprise Linux 10; and 58 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 16 more
    Red Hat Product Security
  14. 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
  15. Affected versionsThe structured affected or fixed version information changed.
    Before
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs as a component of Red Hat Enterprise Linux 10; nodejs-devel as a component of Red Hat Enterprise Linux 10; and 67 more · Fixed: 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
    After
    cryostat-openshift-console-plugin-npm as a component of Cryostat 4; cryostat/cryostat-openshift-console-plugin-rhel9 as a component of Cryostat 4; grafana-infinity-datasource-npm as a component of Cryostat 4; exploit-intelligence-tech-preview/vulnerability-analysis-rhel9 as a component of Exploit Intelligence; 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; openshift-service-mesh/kiali-ossmc-rhel9 as a component of OpenShift Service Mesh 3; openshift-service-mesh/kiali-rhel9 as a component of OpenShift Service Mesh 3; 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; ip-address as a component of Red Hat AMQ Broker 7; ansible-automation-platform-27/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ansible-automation-platform-tech-preview/mcp-server-rhel9 as a component of Red Hat Ansible Automation Platform 2; ip-address 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-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; rhcl-1/rhcl-console-plugin-rhel9 as a component of Red Hat Connectivity Link 1; 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; nodejs24 as a component of Red Hat Enterprise Linux 10; nodejs24-devel as a component of Red Hat Enterprise Linux 10; and 60 more · Fixed: nodejs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-devel-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-docs-1:22.23.1-6.el10_2.noarch as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-full-i18n-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-libs-debuginfo-1:22.23.1-6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.aarch64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.ppc64le as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.s390x as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs-npm-1:10.9.8-1.22.23.1.6.el10_2.x86_64 as a component of Red Hat Enterprise Linux AppStream (v. 10); nodejs22-1:22.23.1-6.el10_2.src as a component of Red Hat Enterprise Linux AppStream (v. 10); and 14 more
    Red Hat Product Security
Material fields only · duplicate refreshes suppressed · history retained for the configured operational retention period
Technical terms and abbreviations used in this report
CVE
Common Vulnerabilities and Exposures: the public identifier for one disclosed vulnerability.
CVSS
Common Vulnerability Scoring System: a technical severity framework; it is not patching priority by itself.
EPSS
Exploit Prediction Scoring System: FIRST's estimate of the probability that exploitation activity will be observed in the next 30 days; it is a forecast, not confirmation.
CWE
Common Weakness Enumeration: the standard category describing the underlying software or hardware weakness.
CNA
CVE Numbering Authority: an organisation authorised to assign and publish CVE records.
CISA ADP
Cybersecurity and Infrastructure Security Agency Authorized Data Publisher: structured enrichment added to a CVE record.
NVD
National Vulnerability Database: NIST's enrichment service for CVE records.
CERT / CSIRT
A computer security incident response team that publishes warnings or coordinates incident response.
PoC
Proof of concept: public material that demonstrates or helps reproduce exploitation.
CSAF
Common Security Advisory Framework: a machine-readable format for security advisories.
LoTL
Living off the land: abuse of legitimate tools or system functions during an attack.
Free version - for non-commercial use only.CVE-2026-69192 · cve.blacktree.nl