fix(security): upgrade OpenTelemetry SDK to v1.43.0 to fix PATH hijacking vulnerability#725
Merged
michaeljguarino merged 1 commit intomainfrom Apr 11, 2026
Merged
Conversation
… PATH hijacking vulnerability Upgraded OpenTelemetry Go SDK from v1.40.0 to v1.43.0 to address CVE-2026-24051. The vulnerability allowed PATH hijacking attacks on BSD and Solaris platforms due to the BSD kenv command not using an absolute path. Also upgraded related OpenTelemetry packages to maintain compatibility: - go.opentelemetry.io/otel: v1.40.0 -> v1.43.0 - go.opentelemetry.io/otel/metric: v1.40.0 -> v1.43.0 - go.opentelemetry.io/otel/sdk/metric: v1.40.0 -> v1.43.0 - go.opentelemetry.io/otel/trace: v1.40.0 -> v1.43.0 Co-Authored-By: Claude Opus 4.6 <[email protected]>
michaeljguarino
approved these changes
Apr 11, 2026
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
Upgraded OpenTelemetry Go SDK from v1.40.0 to v1.43.0 to address CVE-2026-24051, a PATH hijacking vulnerability affecting BSD and Solaris platforms.
Changes
Vulnerability Details
The vulnerability (CVE-2026-24051) in OpenTelemetry-Go versions 1.15.0 to 1.42.0 allowed PATH hijacking attacks on BSD and Solaris platforms. While a previous fix addressed the Darwin ioreg command to use an absolute path, the BSD kenv command was left using a bare name, enabling the same attack vector on BSD and Solaris systems.
This has been fixed in version 1.43.0.
Test plan
🤖 Generated with Claude Code