↧
Answer by mgorven for How do I automate exporting a DER encoded certificate...
You're probably seeing the lines which openssl outputs on stderr and are ignored by sed. You can just get rid of these before passing the output to sed:% echo | openssl s_client -connect google.com:443...
View ArticleAnswer by Celada for How do I automate exporting a DER encoded certificate...
Your sed command is only capturing openssl s_client's standard output, but the certificate comes with the other debugging information on standard error. Have you tried something like this?openssl...
View ArticleHow do I automate exporting a DER encoded certificate for a site?
I'd like to automate the following process with the openssl command:Open browser, go to https://www.google.comInspect ssl cert Export it locally in DER formatI've been working along the lines of the...
View Article
More Pages to Explore .....