Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-15 00:19:37 +00:00
parent 220486abce
commit d5421f7c01
42 changed files with 459 additions and 43 deletions

View File

@@ -14,7 +14,7 @@ source: https://github.com/tldr-pages/tldr.git
- Display the certificate presented by an SSL/TLS server:
`openssl s_client -connect {{host}}:{{port}} </dev/null`
`openssl < /dev/null s_client -connect {{host}}:{{port}}`
- Set the Server Name Indicator (SNI) when connecting to the SSL/TLS server:
@@ -22,4 +22,4 @@ source: https://github.com/tldr-pages/tldr.git
- Display the complete certificate chain of an HTTPS server:
`openssl s_client -connect {{host}}:443 -showcerts </dev/null`
`openssl < /dev/null s_client -connect {{host}}:443 -showcerts`