Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-53714
Published:July 16, 2026
Updated:August 02, 2026
Impact When Envoy Gateway runs in GatewayNamespaceMode ("provider.kubernetes.deploy.type=GatewayNamespace"), the xDS gRPC server is configured with a "StreamInterceptor" for JWT authentication but no UnaryInterceptor. The go-control-plane xDS server exposes both streaming and unary (Fetch) RPC methods for all registered discovery services. Since there is no unary interceptor, these Fetch endpoints are completely unauthenticated. Additionally, the JWT authentication interceptor in GatewayNamespaceMode only validates tokens when the received gRPC message is of type "discoveryv3.DeltaDiscoveryRequest" . If the message is a "discoveryv3.DiscoveryRequest" — used by the State-of-the-World (SotW) xDS protocol — the type assertion fails, the validation block is skipped entirely, and RecvMsg returns nil (success) without any authentication. Any pod in the cluster that can reach the xDS server (port 18000) can use the SotW protocol to bypass JWT authentication and access: * TLS private keys via StreamSecrets (SDS) * All xDS resources via StreamAggregatedResources (ADS) * Backend endpoints via StreamClusters / StreamEndpoints (CDS/EDS) * Routing rules via StreamRoutes / StreamListeners (RDS/LDS) Credits Envoy Gateway thanks @dashingDragon and @Donjon-Cerberus for reporting this issue.
Affected Packages
https://github.com/envoyproxy/gateway.git (GITHUB):
Affected version(s) >=v1.5.0 <v1.7.4
Fix Suggestion:
Update to version v1.7.4
https://github.com/envoyproxy/gateway.git (GITHUB):
Affected version(s) >=v1.8.0-rc.0 <v1.8.1
Fix Suggestion:
Update to version v1.8.1
github.com/envoyproxy/gateway (GO):
Affected version(s) >=v1.5.0 <v1.7.4
Fix Suggestion:
Update to version v1.7.4
github.com/envoyproxy/gateway (GO):
Affected version(s) >=v1.8.0-rc.0 <v1.8.1
Fix Suggestion:
Update to version v1.8.1
Do you need more information?
Contact Us
CVSS v4
Base Score:
8.3
Attack Vector
ADJACENT
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
NONE
Vulnerable System Availability
NONE
Subsequent System Confidentiality
HIGH
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
7.4
Attack Vector
ADJACENT
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
CHANGED
Confidentiality
HIGH
Integrity
NONE
Availability
NONE
Weakness Type (CWE)
Missing Authentication for Critical Function