Fix ECH rejection to verify the outer cert against the public_name#407
Open
bindreams wants to merge 3 commits into
Open
Fix ECH rejection to verify the outer cert against the public_name#407bindreams wants to merge 3 commits into
bindreams wants to merge 3 commits into
Conversation
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.
On an ECH rejection,
verifyServerCertificateincorrectly verifies the presented outer certificate against the inner name (c.config.ServerName), instead of the ClientHelloOuter'spublic_name(c.serverName). These two names almost always differ, and in that case the verification fails and the handshake aborts with aCertificateVerificationErrorbefore the*ECHRejectionErrorcarryingretry_configsis ever surfaced.As a consequence of this bug, ECH retry recovery can never complete against a real rejecting server. The client always errors out verifying the outer cert against the inner name, so a caller cannot both send ECH and recover from an ECH-config rotation (e.g. Cloudflare's ~hourly key rotation).
This PR fixes the bug by correctly verifying against
c.serverNameinstead ofc.config.ServerName.See also: https://github.com/golang/go/blob/go1.26.1/src/crypto/tls/handshake_client.go#L1118-L1146