mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-04 20:47:36 +03:00
add InsecureSkipTimeVerify
This commit is contained in:
parent
dae72adb81
commit
7973961f55
3 changed files with 22 additions and 6 deletions
|
@ -656,6 +656,14 @@ type Config struct {
|
||||||
// testing or in combination with VerifyConnection or VerifyPeerCertificate.
|
// testing or in combination with VerifyConnection or VerifyPeerCertificate.
|
||||||
InsecureSkipVerify bool
|
InsecureSkipVerify bool
|
||||||
|
|
||||||
|
// InsecureSkipTimeVerify is used to verify the time on the returned
|
||||||
|
// certificates.
|
||||||
|
// If InsecureSkipTimeVerify true, crypto/tls will do normal
|
||||||
|
// certificate validation but ignore certifacate's time.
|
||||||
|
//
|
||||||
|
// This field is ignored when InsecureSkipVerify is true.
|
||||||
|
InsecureSkipTimeVerify bool // [uTLS]
|
||||||
|
|
||||||
// InsecureServerNameToVerify is used to verify the hostname on the returned
|
// InsecureServerNameToVerify is used to verify the hostname on the returned
|
||||||
// certificates. It is intended to use with spoofed ServerName.
|
// certificates. It is intended to use with spoofed ServerName.
|
||||||
// If InsecureServerNameToVerify is "*", crypto/tls will do normal
|
// If InsecureServerNameToVerify is "*", crypto/tls will do normal
|
||||||
|
@ -821,6 +829,7 @@ func (c *Config) Clone() *Config {
|
||||||
ClientAuth: c.ClientAuth,
|
ClientAuth: c.ClientAuth,
|
||||||
ClientCAs: c.ClientCAs,
|
ClientCAs: c.ClientCAs,
|
||||||
InsecureSkipVerify: c.InsecureSkipVerify,
|
InsecureSkipVerify: c.InsecureSkipVerify,
|
||||||
|
InsecureSkipTimeVerify: c.InsecureSkipTimeVerify,
|
||||||
InsecureServerNameToVerify: c.InsecureServerNameToVerify,
|
InsecureServerNameToVerify: c.InsecureServerNameToVerify,
|
||||||
CipherSuites: c.CipherSuites,
|
CipherSuites: c.CipherSuites,
|
||||||
PreferServerCipherSuites: c.PreferServerCipherSuites,
|
PreferServerCipherSuites: c.PreferServerCipherSuites,
|
||||||
|
|
|
@ -303,10 +303,12 @@ func (c *Conn) loadSession(hello *clientHelloMsg) (cacheKey string,
|
||||||
return cacheKey, nil, nil, nil, nil
|
return cacheKey, nil, nil, nil, nil
|
||||||
}
|
}
|
||||||
serverCert := session.serverCertificates[0]
|
serverCert := session.serverCertificates[0]
|
||||||
if c.config.time().After(serverCert.NotAfter) {
|
if !c.config.InsecureSkipTimeVerify {
|
||||||
// Expired certificate, delete the entry.
|
if c.config.time().After(serverCert.NotAfter) {
|
||||||
c.config.ClientSessionCache.Put(cacheKey, nil)
|
// Expired certificate, delete the entry.
|
||||||
return cacheKey, nil, nil, nil, nil
|
c.config.ClientSessionCache.Put(cacheKey, nil)
|
||||||
|
return cacheKey, nil, nil, nil, nil
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if err := serverCert.VerifyHostname(c.config.ServerName); err != nil {
|
if err := serverCert.VerifyHostname(c.config.ServerName); err != nil {
|
||||||
return cacheKey, nil, nil, nil, nil
|
return cacheKey, nil, nil, nil, nil
|
||||||
|
@ -891,10 +893,15 @@ func (c *Conn) verifyServerCertificate(certificates [][]byte) error {
|
||||||
// [UTLS SECTION START]
|
// [UTLS SECTION START]
|
||||||
opts := x509.VerifyOptions{
|
opts := x509.VerifyOptions{
|
||||||
Roots: c.config.RootCAs,
|
Roots: c.config.RootCAs,
|
||||||
CurrentTime: c.config.time(),
|
|
||||||
Intermediates: x509.NewCertPool(),
|
Intermediates: x509.NewCertPool(),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if c.config.InsecureSkipTimeVerify {
|
||||||
|
opts.CurrentTime = certs[0].NotAfter
|
||||||
|
} else {
|
||||||
|
opts.CurrentTime = c.config.time()
|
||||||
|
}
|
||||||
|
|
||||||
if len(c.config.InsecureServerNameToVerify) == 0 {
|
if len(c.config.InsecureServerNameToVerify) == 0 {
|
||||||
opts.DNSName = c.config.ServerName
|
opts.DNSName = c.config.ServerName
|
||||||
} else if c.config.InsecureServerNameToVerify != "*" {
|
} else if c.config.InsecureServerNameToVerify != "*" {
|
||||||
|
|
|
@ -814,7 +814,7 @@ func TestCloneNonFuncFields(t *testing.T) {
|
||||||
f.Set(reflect.ValueOf("b"))
|
f.Set(reflect.ValueOf("b"))
|
||||||
case "ClientAuth":
|
case "ClientAuth":
|
||||||
f.Set(reflect.ValueOf(VerifyClientCertIfGiven))
|
f.Set(reflect.ValueOf(VerifyClientCertIfGiven))
|
||||||
case "InsecureSkipVerify", "SessionTicketsDisabled", "DynamicRecordSizingDisabled", "PreferServerCipherSuites":
|
case "InsecureSkipVerify", "InsecureSkipTimeVerify", "SessionTicketsDisabled", "DynamicRecordSizingDisabled", "PreferServerCipherSuites":
|
||||||
f.Set(reflect.ValueOf(true))
|
f.Set(reflect.ValueOf(true))
|
||||||
case "InsecureServerNameToVerify":
|
case "InsecureServerNameToVerify":
|
||||||
f.Set(reflect.ValueOf("c"))
|
f.Set(reflect.ValueOf("c"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue