Kaynağa Gözat

crypto/tls: use negotiated version for fallback check

BoGo: FallbackSCSV-VersionMatch-TLS13
tls13
Filippo Valsorda 7 yıl önce
committed by Peter Wu
ebeveyn
işleme
58aab36b6e
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      handshake_server.go

+ 1
- 1
handshake_server.go Dosyayı Görüntüle

@@ -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")
}


Yükleniyor…
İptal
Kaydet