Example of a connection:
openssl s_client -connect $target:995 -crlf -quiet
Issues
The following message means that the server and client could not agree on a shared crypto system; probably because the server’s crypto is too old.
139763095926080:error:1425F102:SSL routines:ssl_choose_client_version:unsupported protocol:../ssl/statem/statem_lib.c:1957:
Add TLS 1 support:
openssl s_client -connect $target:995 -crlf -quiet -tls1
Leave a Reply
You must be logged in to post a comment.