GHSA-8wmf-6v46-5gfg

Suggest an improvement
Source
https://github.com/advisories/GHSA-8wmf-6v46-5gfg
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-8wmf-6v46-5gfg
Aliases
Downstream
Published
2026-09-17T20:31:06Z
Modified
2026-09-17T20:45:06Z
Severity
  • 2.0 (Low) CVSS_V4 - CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N CVSS Calculator
Summary
OpenTelemetry-Go: Exporter config logging may leak endpoint URLs in info logs
Details

Summary

OpenTelemetry Go versions 1.5.0 through 1.44.0 can include trace exporter endpoint configuration in an internal diagnostic log emitted when an SDK TracerProvider is created. The default OpenTelemetry logger does not emit this event. Exposure requires an application to install a logger that enables OpenTelemetry's internal Info-level diagnostics and for someone other than the intended audience to have access to those logs.

The logged configuration can disclose the address of the trace collector and whether the OTLP/HTTP connection is configured as insecure. The Zipkin exporter logs its complete collector URL, so credentials in URL userinfo or tokens in the query string are also disclosed if an application embeds them there. OTLP authentication headers, TLS key material, and exported span data are not included in this log.

Exporter MarshalLog implementations that caused this configuration to be included in internal logs were introduced by a1fff3c.

Details

When sdk/trace.NewTracerProvider constructs a provider, it records a TracerProvider created internal Info event containing the provider configuration. In affected versions, the configuration's MarshalLog methods recursively include:

  1. the provider's span processors;
  2. each processor's span exporter; and
  3. for the OTLP trace exporter, its client configuration.

This causes the following values to be present in the event:

  • OTLP trace gRPC: the configured endpoint;
  • OTLP trace HTTP: the configured endpoint and the Insecure flag; and
  • Zipkin: the complete collector URL.

OpenTelemetry Go does not emit this event with its default logger, which only emits errors. An application must explicitly configure a sufficiently verbose logger with otel.SetLogger. The required logr verbosity is version-dependent:

  • versions 1.5.0 through 1.14.x use V(1) for this Info event; and
  • versions 1.15.0 through 1.44.0 use V(4).

OTLP header configuration is not part of the marshaled object, so credentials supplied with WithHeaders or the corresponding environment variables are not exposed. The documented OTLP WithEndpoint input is a collector address rather than a credential-bearing URL. The higher-risk case is therefore the Zipkin collector URL, which is retained and logged in full, or an application passing sensitive data in an OTLP endpoint outside the documented format.

Proof of concept

The following program demonstrates the behavior with OpenTelemetry Go 1.44.0. It deliberately places credentials and a token in the Zipkin collector URL and enables internal Info logging:

package main

import (
	"bytes"
	"context"
	"fmt"

	"github.com/go-logr/logr/funcr"
	"go.opentelemetry.io/otel"
	"go.opentelemetry.io/otel/exporters/zipkin"
	sdktrace "go.opentelemetry.io/otel/sdk/trace"
)

func main() {
	var logs bytes.Buffer
	otel.SetLogger(funcr.New(func(_, args string) {
		_, _ = logs.WriteString(args)
	}, funcr.Options{Verbosity: 4}))

	exporter, err := zipkin.New(
		"http://user:pass@zipkin.internal:9411/api/v2/spans?token=secret",
	)
	if err != nil {
		panic(err)
	}

	tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
	_ = tp.Shutdown(context.Background())

	fmt.Println(logs.String())
}

The TracerProvider created event contains:

http://user:pass@zipkin.internal:9411/api/v2/spans?token=secret

For versions before 1.15.0, set funcr.Options{Verbosity: 1} instead.

Impact

This is a conditional disclosure through application logs. Affected applications must enable verbose OpenTelemetry internal diagnostics and configure a trace exporter containing information they do not intend to expose to readers of those logs. In that configuration, a person or system with log access can learn the trace collector address and internal network topology. If credentials or tokens are embedded directly in a Zipkin collector URL, those values can also be recovered from the logs.

There is no exposure with the default OpenTelemetry logger, and the vulnerable log is generated from local application configuration rather than remotely supplied span data. OTLP authentication headers, certificate or private-key contents, and telemetry payloads are not logged by this path.

Remediation

Upgrade the affected OpenTelemetry Go modules to version 1.45.0 or later. The fix in 3a1412d stops recursively marshaling exporter and client configuration and records their types instead.

If an immediate upgrade is not possible:

  • keep OpenTelemetry internal logging below the Info verbosity described above;
  • do not embed credentials or tokens in exporter endpoint URLs; use authentication headers or another supported credential mechanism; and
  • restrict access to existing logs and rotate any credentials that may already have been recorded.
Database specific
{
    "cwe_ids": [
        "CWE-200",
        "CWE-532"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-09-17T20:31:06Z",
    "nvd_published_at": "2026-09-16T20:17:32Z",
    "severity": "LOW"
}
References

Affected packages

Go
go.opentelemetry.io/otel/sdk

Package

Name
go.opentelemetry.io/otel/sdk
View open source insights on deps.dev
Purl
pkg:golang/go.opentelemetry.io/otel/sdk

Affected ranges

Type
SEMVER
Events
Introduced
1.5.0
Fixed
1.45.0

Database specific

last_known_affected_version_range
"<= 1.44.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json"
go.opentelemetry.io/otel/exporters/otlp/otlptrace

Package

Name
go.opentelemetry.io/otel/exporters/otlp/otlptrace
View open source insights on deps.dev
Purl
pkg:golang/go.opentelemetry.io/otel/exporters/otlp/otlptrace

Affected ranges

Type
SEMVER
Events
Introduced
1.5.0
Fixed
1.45.0

Database specific

last_known_affected_version_range
"<= 1.44.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json"
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc

Package

Name
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
View open source insights on deps.dev
Purl
pkg:golang/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc

Affected ranges

Type
SEMVER
Events
Introduced
1.5.0
Fixed
1.45.0

Database specific

last_known_affected_version_range
"<= 1.44.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json"
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp

Package

Name
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
View open source insights on deps.dev
Purl
pkg:golang/go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp

Affected ranges

Type
SEMVER
Events
Introduced
1.5.0
Fixed
1.45.0

Database specific

last_known_affected_version_range
"<= 1.44.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json"
go.opentelemetry.io/otel/exporters/zipkin

Package

Name
go.opentelemetry.io/otel/exporters/zipkin
View open source insights on deps.dev
Purl
pkg:golang/go.opentelemetry.io/otel/exporters/zipkin

Affected ranges

Type
SEMVER
Events
Introduced
1.5.0
Fixed
1.45.0

Database specific

last_known_affected_version_range
"<= 1.44.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-8wmf-6v46-5gfg/GHSA-8wmf-6v46-5gfg.json"