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,506
  • 3
  • 19
  • 28

1 Answers1

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