mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 22:11:35 +01:00
Added openssl s_client to view cert expiration
This commit is contained in:
parent
14821d424c
commit
4d6bc270cf
@ -8,3 +8,8 @@ openssl req -new -key server.key -out server.csr
|
|||||||
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
|
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
|
||||||
|
|
||||||
# (The above commands may be run in sequence to generate a self-signed SSL certificate.)
|
# (The above commands may be run in sequence to generate a self-signed SSL certificate.)
|
||||||
|
|
||||||
|
To view certificate expiration:
|
||||||
|
+echo | openssl s_client -connect <hostname>:443 2> /dev/null | \
|
||||||
|
awk '/-----BEGIN/,/END CERTIFICATE-----/' | \
|
||||||
|
openssl x509 -noout -enddate
|
||||||
|
Loading…
Reference in New Issue
Block a user