Testing for SSL Renegotiation
I've noticed that OpenSSL will say that "Renegotiation IS supported" even when a server has disabled it. To know for sure, it's possible to trigger a Renegotiation with the open ssl client to see what happens.
To do this, run the command:
openssl s_client -connect host:port
And enter R to trigger Renegotiation:
R
You will see "RENEGOTIATING" followed by an error if Renegotiation has failed.
To do this, run the command:
openssl s_client -connect host:port
And enter R to trigger Renegotiation:
R
You will see "RENEGOTIATING" followed by an error if Renegotiation has failed.
Comments
Post a Comment