使用 openssl 从 https 获取 SNI 证书

使用 openssl 从 https 获取 SNI 证书

我知道我可以像这样用 OpenSSL 打印出网站的证书:

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

但在某些网站上它不起作用,因为它们依赖于 SNI。

有没有办法通过 openssl 发送 SNI 请求?

答案1

openssl s_client -showcerts -connect example.com:443 -servername example.com

相关内容