英文:
How to get website's https certificate on linux command line?
问题
我可以使用wget
或类似的命令行工具从服务器获取HTTPS响应。
在Firefox/Chrome浏览器中,我可以通过用户界面简单地下载.pem格式的证书,然后将其添加到我的信任主机列表中。
如何通过Linux命令行下载相同的HTTPS证书?
谢谢。
英文:
I can use wget
or a similar command line tool to get an HTTPS response from a server.
On Firefox/chrome browser, I can simply download the certificate in pem format through the user interface, then add it to my trust host list.
How can I download the same HTTPS certificate through the Linux command line?
Thanks.
答案1
得分: 1
已经在这里回答过了
只需使用openssl命令
openssl s_client -showcerts -connect server.edu:443 </dev/null 2>/dev/null|openssl x509 -outform PEM >mycertfile.pem
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论