mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 12:37:35 +03:00
crypto/tls: make SSLv3 again disabled by default
It was mistakenly re-enabled in CL 146217. Fixes #33837 Change-Id: I8c0e1787114c6232df5888e51e355906622295bc Reviewed-on: https://go-review.googlesource.com/c/go/+/191877 Run-TryBot: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
This commit is contained in:
parent
ea863787e2
commit
63a961538b
2 changed files with 18 additions and 0 deletions
|
@ -794,6 +794,10 @@ var supportedVersions = []uint16{
|
||||||
func (c *Config) supportedVersions(isClient bool) []uint16 {
|
func (c *Config) supportedVersions(isClient bool) []uint16 {
|
||||||
versions := make([]uint16, 0, len(supportedVersions))
|
versions := make([]uint16, 0, len(supportedVersions))
|
||||||
for _, v := range supportedVersions {
|
for _, v := range supportedVersions {
|
||||||
|
// TLS 1.0 is the default minimum version.
|
||||||
|
if (c == nil || c.MinVersion == 0) && v < VersionTLS10 {
|
||||||
|
continue
|
||||||
|
}
|
||||||
if c != nil && c.MinVersion != 0 && v < c.MinVersion {
|
if c != nil && c.MinVersion != 0 && v < c.MinVersion {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,20 @@ func TestRejectBadProtocolVersion(t *testing.T) {
|
||||||
}, "unsupported versions")
|
}, "unsupported versions")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestSSLv3OptIn(t *testing.T) {
|
||||||
|
config := testConfig.Clone()
|
||||||
|
config.MinVersion = 0
|
||||||
|
testClientHelloFailure(t, config, &clientHelloMsg{
|
||||||
|
vers: VersionSSL30,
|
||||||
|
random: make([]byte, 32),
|
||||||
|
}, "unsupported versions")
|
||||||
|
testClientHelloFailure(t, config, &clientHelloMsg{
|
||||||
|
vers: VersionTLS12,
|
||||||
|
supportedVersions: []uint16{VersionSSL30},
|
||||||
|
random: make([]byte, 32),
|
||||||
|
}, "unsupported versions")
|
||||||
|
}
|
||||||
|
|
||||||
func TestNoSuiteOverlap(t *testing.T) {
|
func TestNoSuiteOverlap(t *testing.T) {
|
||||||
clientHello := &clientHelloMsg{
|
clientHello := &clientHelloMsg{
|
||||||
vers: VersionTLS10,
|
vers: VersionTLS10,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue