1

I know I can print out a site's certificate with OpenSSL like this:

openssl s_client -showcerts -connect sni.velox.ch:443

But on some sites it doesn't work because they rely on SNI.

Is there a way to send an SNI request via openssl?

rustyx
  • 1,676
  • 3
  • 21
  • 30

1 Answers1

1
openssl s_client -showcerts -connect example.com:443 -servername example.com
Anubioz
  • 3,677
  • 18
  • 23