GHSA-6vch-q96h-7gc3 — v3
Fix: etcd-io/etcd#22130GHSA-6vch-q96h-7gc3 is a CWE-770 vulnerability in go.etcd.io/etcd/v3. A fix is available for go.etcd.io/etcd/v3 — see the affected versions and patch details below.
etcd: `tlsListener.acceptLoop` spawns unbounded handshake goroutines with no deadline
Exploitation Status
No confirmed exploitation observed yet
- CISA assesses this as automatable — exploitation doesn’t require manual, per-target effort, which raises the odds of mass scanning and opportunistic attacks.
- CISA’s own triage has not observed active exploitation or public proof-of-concept code for this CVE as of its last assessment.
Exploitation and automatability from CISA’s SSVC triage for GHSA-6vch-q96h-7gc3.
EPSS Exploitation Probability
Probability of exploitation in the next 30 days, from FIRST.org EPSS.
Real-World Exposure
go.etcd.io/etcd/v3🐹go.etcd.io/etcd/v3🐹go.etcd.io/etcd/v3Real-time download stats are indexed for npm and PyPI packages. This vulnerability affects Go packages — download data is not available via public APIs for these ecosystems.
Description
Impact
What kind of vulnerability is it? Who is impacted?
A network attacker who can reach an etcd TLS listener can open many TCP connections and never send a ClientHello. Each connection spawns a goroutine in the etcd server process that blocks indefinitely inside tls.Conn.Handshake(), and each is tracked in the pending map. Unbounded goroutine and map growth exhausts memory in the etcd process, causing loss of availability for the etcd cluster (and, when etcd backs Kubernetes, the control plane).
Patches
Has the problem been patched? What versions should users upgrade to?
This vulnerability is patched in the following versions:
- etcd 3.7.1
- etcd 3.6.14
- etcd 3.5.33
Workarounds
Is there a way for users to fix or remediate the vulnerability without upgrading?
If upgrading is not immediately possible, then restrict network access. Limit which hosts can reach etcd's client (gRPC) port via firewall rules or network policy, reducing who can attempt exploitation.
Reporter
VMware By Broadcom
Affected Packages
| Ecosystem | Package | Vulnerable range | Fix |
|---|---|---|---|
| 🐹Go | go.etcd.io/etcd/v3 | ≥ 3.7.0-alpha.0&&< 3.7.1 | 3.7.1go get go.etcd.io/etcd/v3@v3.7.1 |
| 🐹Go | go.etcd.io/etcd/v3 | ≥ 3.6.0&&< 3.6.14 | 3.6.14go get go.etcd.io/etcd/v3@v3.6.14 |
| 🐹Go | go.etcd.io/etcd/v3 | all versions | 3.5.33go get go.etcd.io/etcd/v3@v3.5.33 |
Detection & mitigation playbook
Open-source dependencyDetect
Scan your dependency tree (package-lock.json, pnpm-lock.yaml, requirements.txt, go.sum, etc.) for go.etcd.io/etcd/v3, including transitive dependencies — a direct dependency you never call can still pull in a vulnerable version.
Fix
Update go.etcd.io/etcd/v3 to 3.7.1 or later, then make sure no transitive (indirect) dependency still pins the vulnerable range — O3 confirms GHSA-6vch-q96h-7gc3 is resolved across your whole dependency graph.
Workarounds
Cap what an attacker can consume: apply request size, rate and timeout limits in front of the affected component, and run it with memory and CPU limits so exhaustion degrades one worker rather than the whole service.
Fixing This On Your OS
If you run this on a Linux distribution, patch through your package manager against the distro's own security advisory below — it tracks the exact backported fix for your release, which can ship on a different timeline (and sometimes a different severity) than the upstream project.
This is an Important denial of service flaw in etcd, a critical component for distributed systems and Kubernetes control planes. A remote attacker can exhaust etcd memory by initiating numerous incomplete TLS handshakes, leading to a loss of availability for affected clusters.
Restrict network access to the etcd TLS listener to only trusted clients and networks. Configure firewall rules to limit inbound connections to the etcd client port (default 2379) and peer port (default 2380) to authorized hosts. This reduces the attack surface by preventing untrusted network attackers from reaching the vulnerable service.Source: Red Hat security advisory for GHSA-6vch-q96h-7gc3 (CC BY 4.0)
| Product | Fixed in | Advisory |
|---|---|---|
| Multicluster Global Hub 1.4.9 | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1788375682 | RHSA-2026:67516 |
| Multicluster Global Hub 1.5.8 | multicluster-globalhub/multicluster-globalhub-grafana-rhel9:1789515639 | RHSA-2026:71597 |
| Red Hat Hardened Images | etcd-main-3.7.1-0.1.hum1 | RHSA-2026:44868 |
| Red Hat Trusted Artifact Signer 1.3 | rhtas/createtree-rhel9:1789645873 | RHSA-2026:70826 |
| Red Hat Trusted Artifact Signer 1.3 | rhtas/updatetree-rhel9:1789645873 | RHSA-2026:70828 |
| Red Hat Trusted Artifact Signer 1.3 | rhtas/certificate-transparency-rhel9:1789655058 | RHSA-2026:70829 |
Frequently Asked Questions
Is GHSA-6vch-q96h-7gc3 in your dependencies?
Find it across Go, including transitive dependencies.