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

Tekton Pipelines: Git Resolver Unsanitized Revision Parameter Enables git Argument Injection Leading to RCE

tektoncd · pipeline

7.5HighCVSS 3.1
Recommended action
Within 7 days

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

Patch available
Direct vendor intelligence

Authoritative vendor CSAF and VEX advisories

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

1 current
CVE-2026-40938 · CSAF 2.0 · revision 3 · finalRed Hat Product Securitygithub.com/tektoncd/pipeline: Tekton Pipelines: Arbitrary code execution and secret exfiltration via malicious git commands
27 known affected

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

  • openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines
  • openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines
Summary
A flaw was found in Tekton Pipelines, a system for declaring continuous integration/continuous delivery (CI/CD) pipelines. An authenticated user, able to submit `ResolutionRequest` objects, can exploit a vulnerability by injecting malicious commands into the git resolver's revision parameter. This allows for the execution of unauthorized programs on the resolver pod. Successful exploitation can lead to the exfiltration of all cluster-wide secrets, resulting in significant information disclosure.
Remediation
It is recommended that existing users of Red Hat OpenShift Builds 1.7.2 upgrade to 1.7.3
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-24491

No EUVD known-exploited evidence

Tekton Pipelines project provides k8s-style resources for declaring CI/CD-style pipelines. Starting in version 1.0.0 and prior to versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1, the git resolver's revision parameter is passed directly as a positional argument to git fetch without any validation that it does not begin with a - character. Because git parses flags from mixed positional arguments, an attacker can inject arbitrary git fetch flags such as --upload-pack=<binary>. Combined with the validateRepoURL function explicitly permitting URLs that begin with / (local filesystem paths), a tenant who can submit ResolutionRequest objects can chain these two behaviors to execute an arbitrary binary on the resolver pod. The tekton-pipelines-resolvers ServiceAccount holds cluster-wide get/list/watch on all Secrets, so code execution on the resolver pod enables full cluster-wide secret exfiltration. Versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1 fix the issue.

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

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

Patch available
01

What, why and how

Tekton Pipelines project provides k8s-style resources for declaring CI/CD-style pipelines. Starting in version 1.0.0 and prior to versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1, the git resolver's revision parameter is passed directly as a positional argument to git fetch without any validation that it does not begin with a - character. Because git parses flags from mixed positional arguments, an attacker can inject arbitrary git fetch flags such as --upload-pack=<binary>. Combined with the validateRepoURL function explicitly permitting URLs that begin with / (local filesystem paths), a tenant who can submit ResolutionRequest objects can chain these two behaviors to execute an arbitrary binary on the resolver pod. The tekton-pipelines-resolvers ServiceAccount holds cluster-wide get/list/watch on all Secrets, so code execution on the resolver pod enables full cluster-wide secret exfiltration. Versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1 fix the issue.

What

Tekton Pipelines project provides k8s-style resources for declaring CI/CD-style pipelines. Starting in version 1.0.0 and prior to versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1, the git resolver's revision parameter is passed directly as a positional argument to git fetch without any validation that it does not begin with a - character. Because git parses flags from mixed positional arguments, an attacker can inject arbitrary git fetch flags such as --upload-pack=<binary>. Combined with the validateRepoURL function explicitly permitting URLs that begin with / (local filesystem paths), a tenant who can submit ResolutionRequest objects can chain these two behaviors to execute an arbitrary binary on the resolver pod. The tekton-pipelines-resolvers ServiceAccount holds cluster-wide get/list/watch on all Secrets, so code execution on the resolver pod enables full cluster-wide secret exfiltration. Versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1 fix the issue.

Why

The product constructs a string for a command to be executed by a separate component in another control sphere, but it does not properly delimit the intended arguments, options, or switches within that command string.

How

An attacker operating through a network path may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

What

Tekton Pipelines project provides k8s-style resources for declaring CI/CD-style pipelines. Starting in version 1.0.0 and prior to versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1, the git resolver's revision parameter is passed directly as a positional argument to git fetch without any validation that it does not begin with a - character. Because git parses flags from mixed positional arguments, an attacker can inject arbitrary git fetch flags such as --upload-pack=<binary>. Combined with the validateRepoURL function explicitly permitting URLs that begin with / (local filesystem paths), a tenant who can submit ResolutionRequest objects can chain these two behaviors to execute an arbitrary binary on the resolver pod. The tekton-pipelines-resolvers ServiceAccount holds cluster-wide get/list/watch on all Secrets, so code execution on the resolver pod enables full cluster-wide secret exfiltration. Versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1 fix the issue.

Why

The product constructs a string for a command to be executed by a separate component in another control sphere, but it does not properly delimit the intended arguments, options, or switches within that command string.

How

An attacker operating through a network path may attempt exploitation with low privileges. If successful, the issue may cause the confidentiality, integrity or availability impact described by the vendor.

02

Exploit reality and attack path

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

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

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

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

A structured CVE source labels at least one public reference as exploit material. BlackTree has not independently validated that it is safe, reliable or weaponised.

Likely attack path
a network path → Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') → cause the confidentiality, integrity or availability impact described by the vendor
Attack surface
Network
Privileges required
Low: a basic authenticated account is required
User interaction
None
Attack complexity
High: exploitation depends on specific conditions
Security boundary
Unchanged: impact remains within the vulnerable component's security authority
Weakness
?CWE means Common Weakness Enumeration: a standard category for the underlying weakness.
CWE-88

CWE-88: Improper Neutralization of Argument Delimiters in a Command ('Argument Injection'). The product constructs a string for a command to be executed by a separate component in another control sphere, but it does not properly delimit the intended arguments, options, or switches within that command string.

CVSS vector
?CVSS means Common Vulnerability Scoring System. The vector records the metric values used to calculate technical severity.
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

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

AVNetworkAttack vector: The vulnerable component can be reached over a network.ACHighAttack complexity: Successful exploitation depends on specific conditions outside the attacker's direct control.PRLowPrivileges required: The attacker needs basic user-level privileges.UINoneUser interaction: No action by another user is required.SUnchangedScope: The security impact remains within the vulnerable component's authority.CHighConfidentiality impact: A successful attack can cause a major loss.IHighIntegrity impact: A successful attack can cause a major loss.AHighAvailability impact: A successful attack can cause a major loss.
Post-exploitation / living off the land
No specific living-off-the-land technique is confirmed in the structured sources. Monitor normal administration tools for activity inconsistent with the affected service's baseline.
NetworkCWE-88Public exploit reference
A

Official authority intelligence

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

ENISA EUVD · EUVD-2026-24491Official EUVD mapping

Tekton Pipelines project provides k8s-style resources for declaring CI/CD-style pipelines. Starting in version 1.0.0 and prior to versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1, the git resolver's revision parameter is passed directly as a positional argument to git fetch without any validation that it does not begin with a - character. Because git parses flags from mixed positional arguments, an attacker can inject arbitrary git fetch flags such as --upload-pack=<binary>. Combined with the validateRepoURL function explicitly permitting URLs that begin with / (local filesystem paths), a tenant who can submit ResolutionRequest objects can chain these two behaviors to execute an arbitrary binary on the resolver pod. The tekton-pipelines-resolvers ServiceAccount holds cluster-wide get/list/watch on all Secrets, so code execution on the resolver pod enables full cluster-wide secret exfiltration. Versions 1.0.2, 1.3.4, 1.6.2, 1.9.3, and 1.11.1 fix the issue.

Official EUVD record
BSI · German · WID-SEC-W-2026-1550Red Hat OpenShift: Schwachstelle ermöglicht Codeausführung und Offenlegung von Informationen

Ein entfernter, authentisierter Angreifer kann eine Schwachstelle in Red Hat OpenShift ausnutzen, um beliebigen Programmcode auszuführen, und um Informationen offenzulegen.

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
openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines
Fixed
registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 more
Action
It is recommended that existing users of Red Hat OpenShift Builds 1.7.2 upgrade to 1.7.3
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 21 Apr 2026 · Last source change 7 Sept 2026, 12:04 UTC · CWE-88 · Improper Neutralization of Argument Delimiters in a Command ('Argument Injection')

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

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

Material change intelligence

What changed after publication

View recent updates →
  1. Affected versionsThe structured affected or fixed version information changed.
    Before
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 more
    After
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.3; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 more
    Red Hat Product Security
  2. Affected versionsThe structured affected or fixed version information changed.
    Before
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 more
    After
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.2; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 more
    Red Hat Product Security
  3. Affected versionsThe structured affected or fixed version information changed.
    Before
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.0; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.0; and 35 more
    After
    openshift-pipelines/pipelines-chains-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-cli-tkn-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-entrypoint-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-events-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-git-init-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-hub-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-manual-approval-gate-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-nop-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-opc-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-proxy-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-operator-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-cli-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pipelines-as-code-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-pruner-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-resolvers-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-api-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-results-watcher-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-sidecarlogresults-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-controller-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-core-interceptors-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-eventlistenersink-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-triggers-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-webhook-rhel9 as a component of OpenShift Pipelines; openshift-pipelines/pipelines-workingdirinit-rhel9 as a component of OpenShift Pipelines · Fixed: registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:18f00b5d62bd5526f80dbe2cb380e677c0f84953b762b3edb41d3e380e04eaf5_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:67f18db03a40270705bffb37c866250aa2418621f0b5128ebf34d9b7ab3df803_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:a286b64da40c2fefa4e4f67249e138409395168f03028d30a2f1cf765440974d_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:dfb8f5b7d5b2a4dbd83b6585d49f53b11c439bcd2d150144edba9fc08e0fe724_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:350e159561c341a69daf928466c64cf1936d4937af62a3a0378c7dfe65949365_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:6eaac6f9f219963aac92099fcf2ab0291d5c0c68cc9070c06c1d122531349802_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:92b94a5e69841aedd2ac577ab8a286ec4ded35ffabed478fdf9ab32fdf4fbb6f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-git-cloner-rhel9@sha256:cdf06172d9ecf62be5a86eef680a6a1e1198b75a6f14c8b9cc7d52c06076d44e_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:07a5fd537dd60ddc9a05766e2c8f4d7f407b2e7914cf0f60a83b4361e934e215_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:3b9bfd2d1f0c9917c65ba84cb26182522de4be3a6e34f4aa6a092c84c97518bc_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:a2485063e14fa8478f05f8a04c1fd43d402b38f8b5a24836ff389711f51f60f9_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-bundler-rhel9@sha256:bd6d2fed0ba96d6583b796370ce0949de210ead5505e60a33204a27b3c6cde2d_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:54a6a27410eabdbbeafd4137e74c1f9312bde27fa345ec4753693ed633668472_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:9bb9d6a35d2acbee9db6770e11894647b57c6c27d5a32944c21b26f382a4d6b5_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:ba720079d59c9b351c7b1ec156d5e3ebabeafcae862f5e86294f0563351f7b65_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-image-processing-rhel9@sha256:cc8bcc436c5e22a1a870599f673dc8cfca8a3d8970b620b8499ec78c207825bb_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:351c74c3fd8d6c79909f8789d457a0e7695dc5a48da0329f0b903a8d76847d4f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5725324b6605bd242e64288df723c0c28dde50b10a1cec48fea7486d74b5782f_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:5a3ce7b8f6bb5b8e485c5efaadff958e4e356dd7e3c9fdbc608686e688703f17_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-rhel9-operator@sha256:c176b6a935420ca95e609241c03c3d4fc1beca73f1e8e3b6c45f7bb27c9c775e_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:14eadfc84ff3891dc935eee3c9553a2c2c7f1b446a123feb02df8f4dff18638f_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2255b1556ac0b266991359df0882fdee8c6c0cc4193a2a77159db0696153020a_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:2b9d139f846cf2f606be0e2498cc74473396d8da623f6b7d87e7c55c54e143d2_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-waiters-rhel9@sha256:b83fb75af5101ee00f32957f1532702e3a58498330cc4d16d4d4f05ef6bd97dc_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:80b9b77db840ace9ba84c3d47b081fdc812be4572d7d476a9eee4b8d446e0ae9_ppc64le as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:8c5090cb83361e280a8069c97252bde7d695d241fc01db975428e5f32ed180c1_arm64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:9f14cf2bbd46f58fb2f3745e8df20e3f3f6cd68395f9b9505bddb896ff900273_s390x as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-webhook-rhel9@sha256:b2cd0295f34620305f2a8ef2ca1e07166f8c565a5162ef3717f810de638e4643_amd64 as a component of Red Hat OpenShift Builds 1.7.4; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:77414b7533c13515a757d2c74641d1ce80330aab8146fd4ea57f837a989507a6_ppc64le as a component of Red Hat OpenShift Builds 1.8.1; registry.redhat.io/openshift-builds/openshift-builds-controller-rhel9@sha256:c918825ce8fa23b002d7469ee2efbb86ee10461f05578bce92f4b7e869482247_arm64 as a component of Red Hat OpenShift Builds 1.8.1; and 35 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-40938 · cve.blacktree.nl