Skip to content

Commit

Permalink
Fix max n for min tls
Browse files Browse the repository at this point in the history
  • Loading branch information
moloch-- committed Sep 20, 2022
1 parent a0c0657 commit 9a450d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/c2/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ func getHTTPSConfig(conf *HTTPServerConfig) *tls.Config {
}

// Randomize the JARM fingerprint
switch insecureRand.Intn(3) {
switch insecureRand.Intn(4) {
case 0:
// tlsConfig.MinVersion = tls.VersionTLS13
fallthrough // For compatibility with winhttp
Expand Down

0 comments on commit 9a450d9

Please sign in to comment.