Ver código fonte

crypto/tls: use negotiated version for fallback check

BoGo: FallbackSCSV-VersionMatch-TLS13
tls13
Filippo Valsorda 7 anos atrás
committed by Peter Wu
pai
commit
58aab36b6e
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      handshake_server.go

+ 1
- 1
handshake_server.go Ver arquivo

@@ -350,7 +350,7 @@ Curves:
for _, id := range hs.clientHello.cipherSuites {
if id == TLS_FALLBACK_SCSV {
// The client is doing a fallback connection.
if hs.clientHello.vers < c.config.maxVersion() {
if c.vers < c.config.maxVersion() {
c.sendAlert(alertInappropriateFallback)
return false, errors.New("tls: client using inappropriate protocol fallback")
}


Carregando…
Cancelar
Salvar