Based on my tests with ssllabs.com I only get downgrade attack prevention with TLS_FALLBACK_SCSV if I set MaxVersion in my tls.Config.
I tried it with TLS_FALLBACK_SCSV as first and as the last entry of my cipher suites but without any luck.
Here my server code
config := &tls.Config{
MinVersion: tls.VersionTLS11,
MaxVersion: tls.VersionTLS12,
CipherSuites: []uint16{
tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA,
tls.TLS_RSA_WITH_3DES_EDE_CBC_SHA,
},
PreferServerCipherSuites: true,
ClientSessionCache: tls.NewLRUClientSessionCache(128),
}
server := &http.Server{Addr: ":4000", Handler: nil, TLSConfig: config}
http2.ConfigureServer(server, nil)
log.Printf("Staring webserver ...")
go http.ListenAndServe(":3000", nil)
server.ListenAndServeTLS(TLS_PUBLIC_KEY, TLS_PRIVATE_KEY)
Based on my tests with ssllabs.com I only get downgrade attack prevention with
TLS_FALLBACK_SCSVif I setMaxVersionin mytls.Config.I tried it with
TLS_FALLBACK_SCSVas first and as the last entry of my cipher suites but without any luck.Here my server code