feat: add notes for openssl s_client

This commit is contained in:
arne 2025-02-16 13:41:39 +01:00
parent 1daebc49a7
commit 6353c8a8c9

View File

@ -0,0 +1,24 @@
---
title: Certificates
menu:
main:
parent: Nerdstuff
---
## Retrieve certificate information from server
### HTTPS
```
openssl s_client -connect mail.br0tkasten.de:443 -servername mail.br0tkasten.de </dev/null 2>/dev/null | openssl x509 -noout -text
```
### IMAP with STARTTLS
```
openssl s_client -starttls imap -connect mail.br0tkasten.de:143 </dev/null 2>/dev/null | openssl x509 -noout -text
```
### SMTP with STARTTLS
```
openssl s_client -starttls smtp -connect mail.br0tkasten.de:587 </dev/null 2>/dev/null | openssl x509 -noout -text
```