If i have an openssl.exe one with sslv3 tls1.1 disabled and one with enabling all? If i do
openssl.exe s_client -connect 10.2.221.33:443 -state
to from enabled to disabled machine. Will ssl3 tls1_! passes or fails? How can we disable sslv3 completely in openssl1.0.2l?
Note: Have compliled and build by modifying Configure by keeping the existing disabled protocols as same. Anything I'm missing while disabling these protocols?
my %disabled = (
"ssl3" => "default", # Highly recommended to disable
"tls1" => "default", # Disables TLS 1.0
"tls1_1" => "default" # Disable TLS 1.1
)