How can I obtain a list of ciphers supported by a remote server via a Java JSSE environment.
I want to get a list of weak ciphers supported by the remote server, so that they can be fixed.
I am using SSLSocket
, which has a method called getSupportedCipherSuites
, but this method returns ciphers that are supported by the client, not a remote server.