如何在linux命令行中获取网站的https证书?

50few1ms  于 2023-05-28  发布在  Linux
关注(0)|答案(1)|浏览(245)

我可以使用wget或类似的命令行工具从服务器获取HTTPS响应。
在Firefox/Chrome浏览器上,我可以简单地通过用户界面下载pem格式的证书,然后将其添加到我的信任主机列表中。如何通过Linux命令行下载相同的HTTPS证书?
谢谢。

w6lpcovy

w6lpcovy1#

已回答here
使用openssl命令

openssl s_client -showcerts -connect server.edu:443 </dev/null 2>/dev/null|openssl x509 -outform PEM >mycertfile.pem

相关问题