Openssl

使用 openssl 從 https 獲取 SNI 證書

  • August 9, 2016

我知道我可以像這樣使用 OpenSSL 列印出站點的證書:

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

但是在某些站點上它不起作用,因為它們依賴於 SNI。

有沒有辦法通過 openssl 發送 SNI 請求?

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

引用自:https://serverfault.com/questions/795830