telnet www.somesite 80 GET /index.html HTTP/1.1 Host: www.somesite
For the ports which are secured, do the following:
openssl s_client -connect www.somesite:443For the server uses self-signed certificate and secured port, do the following:
openssl s_client -connect 12.34.56.78:443 -servername www.somesiteThe servername should be the server name specified in the TLS certificate
No comments:
Post a Comment