openssl s_client using a proxy

前端 未结 5 633
予麋鹿
予麋鹿 2020-12-13 03:23
openssl s_client -connect some.https.server:443 -showcerts

is a nice command to run when you want to inspect the server\'s certificates and its cer

5条回答
  •  遥遥无期
    2020-12-13 03:52

    You can use proxytunnel:

    proxytunnel -p yourproxy:8080 -d www.google.com:443 -a 7000
    

    and then you can do this:

    openssl s_client -connect localhost:7000 -showcerts
    

    Hope this can help you!

提交回复
热议问题