Handy Testing Resources
SSH https://sshcheck.com/ SSL https://www.ssllabs.com/ssltest/ SPF/DKIM: https://www.appmaildev.com/en/dkim
SSH https://sshcheck.com/ SSL https://www.ssllabs.com/ssltest/ SPF/DKIM: https://www.appmaildev.com/en/dkim
This is a simple way to check your sites SSL certificate expiry date from the command line. I’ll probably expand the script to work with lists and to send alerts if under XX days are remaining, but for now it just works with ./ssl_exp.sh your.domain.name #!/bin/bash DOMAIN=$1 EXPIRES=$(echo | openssl s_client -connect ${DOMAIN}:443 2>/dev/null | … [Read more…]