fix(security/UNKNOWN/collector): Update module go.etcd.io/etcd/client/pkg/v3 to v3.6.14 [SECURITY] - #6923
Open
renovate-sh-app[bot] wants to merge 1 commit into
Conversation
…/pkg/v3 to v3.6.14 [SECURITY] | datasource | package | from | to | | ---------- | ----------------------------- | ------- | ------- | | go | go.etcd.io/etcd/client/pkg/v3 | v3.6.12 | v3.6.14 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
Contributor
🔍 Dependency Reviewgo.etcd.io/etcd/client/pkg/v3 v3.6.12 → v3.6.14 — ✅ Safe
Potential areas to sanity-check (only if you import client/pkg directly):
Example (optional) hardening if you need to enforce TLS behavior: import (
"crypto/tls"
"go.etcd.io/etcd/client/pkg/v3/transport"
)
func tlsConfig() (*tls.Config, error) {
ti := transport.TLSInfo{
CertFile: "client.crt",
KeyFile: "client.key",
TrustedCAFile: "ca.crt",
}
cfg, err := ti.ClientConfig()
if err != nil {
return nil, err
}
+ // Pin behavior explicitly if your deployment depends on it.
+ cfg.MinVersion = tls.VersionTLS12
return cfg, nil
}Changelog highlights (v3.6.13 → v3.6.14, relevant to
Action:
Notes
|
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.
This PR contains the following updates:
v3.6.12→v3.6.14Unbounded TLS handshake goroutines in go.etcd.io/etcd/client/pkg/v3
BIT-etcd-2026-73500 / CVE-2026-73500 / GHSA-6vch-q96h-7gc3 / GO-2026-6107
More information
Details
In go.etcd.io/etcd/client/pkg/v3 before 3.5.33, 3.6.14, and 3.7.1, TLS handshakes on listeners created by NewTLSListener do not enforce a handshake deadline. An unauthenticated network attacker who connects to an etcd TLS listener without sending a ClientHello causes a goroutine and a tracking map entry to block indefinitely. Opening many such connections exhausts memory, leading to a denial of service.
Severity
Unknown
References
This data is provided by OSV and the Go Vulnerability Database (CC-BY 4.0).
Release Notes
etcd-io/etcd (go.etcd.io/etcd/client/pkg/v3)
v3.6.14Compare Source
Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).
For installation guides, please check out operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.
Linux
macOS (Darwin)
Docker
etcd uses
gcr.io/etcd-development/etcdas a primary container registry, andquay.io/coreos/etcdas secondary.v3.6.13Compare Source
Please check out CHANGELOG for a full list of changes. And make sure to read upgrade guide before upgrading etcd (there may be breaking changes).
For installation guides, please check out play.etcd.io and operating etcd. Latest support status for common architectures and operating systems can be found at supported platforms.
Linux
macOS (Darwin)
Docker
etcd uses
gcr.io/etcd-development/etcdas a primary container registry, andquay.io/coreos/etcdas secondary.Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
Need help?
You can ask for more help in the following Slack channel: #proj-renovate-self-hosted. In that channel you can also find ADR and FAQ docs in the Resources section.