mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: reject change_cipher_spec record after handshake in TLS 1.3 (#170)
https://github.com/golang/go/pull/58912
This commit is contained in:
parent
88b6acde2b
commit
92986c9bcf
1 changed files with 1 additions and 1 deletions
2
conn.go
2
conn.go
|
@ -731,7 +731,7 @@ func (c *Conn) readRecordOrCCS(expectChangeCipherSpec bool) error {
|
|||
// 5, a server can send a ChangeCipherSpec before its ServerHello, when
|
||||
// c.vers is still unset. That's not useful though and suspicious if the
|
||||
// server then selects a lower protocol version, so don't allow that.
|
||||
if c.vers == VersionTLS13 {
|
||||
if c.vers == VersionTLS13 && !handshakeComplete {
|
||||
return c.retryReadRecord(expectChangeCipherSpec)
|
||||
}
|
||||
if !expectChangeCipherSpec {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue