fix(deps): upgrade otel/sdk to v1.43.0 in extras/dagger (GHSA-9h8m-3fm2-qjrq)#3140
Open
chainloop-platform[bot] wants to merge 1 commit into
Open
fix(deps): upgrade otel/sdk to v1.43.0 in extras/dagger (GHSA-9h8m-3fm2-qjrq)#3140chainloop-platform[bot] wants to merge 1 commit into
chainloop-platform[bot] wants to merge 1 commit into
Conversation
…SA-9h8m-3fm2-qjrq Upgrades go.opentelemetry.io/otel/sdk from v1.38.0 to v1.43.0 in the extras/dagger Go module, along with all co-versioned OTel packages (otel, otel/trace, otel/metric, otel/sdk/metric and all OTLP exporters). Version v1.38.0 contains a PATH-hijacking flaw that allows arbitrary code execution when the SDK initialises its resource-detection pipeline. Assisted-by: Claude Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades the OpenTelemetry Go SDK and all co-versioned OTel packages in the
extras/daggermodule from v1.38.0 to v1.43.0 to eliminate a PATH-hijacking vulnerability that could allow arbitrary code execution when the Dagger module runs.Vulnerability Fixed
GHSA-9h8m-3fm2-qjrq (HIGH) — OpenTelemetry Go SDK v1.38.0 PATH Hijacking leading to Arbitrary Code Execution. The SDK's resource-detection routine resolves executables by walking the
PATHenvironment variable; an attacker who can insert a malicious binary earlier inPATHthan the intended executable achieves code execution at SDK initialisation time.Changes Made
extras/dagger/go.mod: bumpedgo.opentelemetry.io/otel,go.opentelemetry.io/otel/sdk,go.opentelemetry.io/otel/trace,go.opentelemetry.io/otel/metric,go.opentelemetry.io/otel/sdk/metric, and all OTLP exporters from v1.38.0 to v1.43.0 (the version already used by the root module and the rest of the project)extras/dagger/go.sum: added the verified v1.43.0 hash entries for each upgraded package sourced from sum.golang.orgAssisted-by: Claude Code