Bug 2530058 (CVE-2026-87061)

Summary: CVE-2026-87061 olm-operator-konflux-sample: olm-operator-konflux-sample: bundle-hack/update_bundle.sh lacks fail-fast shell options
Product: [Other] Security Response Reporter: OSIDB Bzimport <bzimport>
Component: vulnerabilityAssignee: Product Security <prodsec-ir-bot>
Status: NEW --- QA Contact:
Severity: low Docs Contact:
Priority: low    
Version: unspecifiedCC: gbenhaim, niyer, twaugh
Target Milestone: ---Keywords: Security
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
A flaw was found in olm-operator-konflux-sample. The `bundle-hack/update_bundle.sh` script lacks mechanisms to stop execution immediately upon encountering an error. This oversight allows critical data processing steps, such as those involving `skopeo` or `jq` commands, to fail silently and proceed with outdated or incomplete information. Consequently, this could lead to data integrity issues within the system.
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description OSIDB Bzimport 2026-09-08 19:06:15 UTC
## bundle-hack/update_bundle.sh lacks fail-fast shell options

**Component:** olm-operator-konflux-sample

`bundle-hack/update_bundle.sh` does not set fail-fast shell options, so a failed `skopeo`/`jq` step can silently proceed to the Python CSV rewrite step using stale or incomplete data.

### Remediation
Add `set -euo pipefail` after the shebang and check `skopeo`/`jq` exit status explicitly before proceeding to the Python CSV rewrite.

---
*Source: Ex-Wing/Glasswing Konflux CI security assessment (Mythos), finding FIND-006*