mozilla/cipherscan

Print the ip adress

david-richer-adsk opened this issue · 4 comments

Is it possible to print the ip address of the server that cipherscan is talking to?
I tried with -v with no success.

I am trying to diagnose an issue where dns return different servers with tls/ssl not the same across the board.

Thanks for this piece of software!

Seems unlikely. The DNS resolution is handled by openssl and I don't
believe it exposes it to the calling script.

On Oct 7, 2016 12:24 PM, "David Richer" notifications@github.com wrote:

Is it possible to print the ip address of the server that cipherscan is
talking to?
I tried with -v with no success.

I am trying to diagnose an issue where dns return different servers with
tls/ssl not the same across the board.

Thanks for this piece of software!


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#130, or mute the thread
https://github.com/notifications/unsubscribe-auth/AAZXgV-iaRv9ow6sFPV-NslwHmeYfyEsks5qxpx7gaJpZM4KRX7l
.

My workaround was to ping the server to get an ip and add a temporary entry in my local /etc/host.

if you want to scan an IP not a hostname, you can resolve its name using host and then specify the hostname (for SNI) manually:

./cipherscan -servername google.com 216.58.214.238:443

Thanks for the tip, lot simpler!