externalscripts/certificate_expiration-bsd
author Tomas Zeman <tomas.zeman@upc.cz>
Tue, 11 Dec 2018 14:40:00 +0100
changeset 38 1eada2e65e7a
parent 30 79eef9a447de
permissions -rwxr-xr-x
procstat rusage monitoring

#!/bin/sh

echo | openssl s_client  -connect $1:$2 2>/dev/null | \
sed -n '/-----BEGIN CERTIFICATE-----/,/-----END CERTIFICATE-----/p' | \
openssl x509 -enddate | grep notAfter| awk -F= '{print $2}' | \
while read l; do
	t=`date -j -f "%b %d %T %Y %Z" "$l" +%s`
	n=`date +%s`
	echo `expr $t - $n`
done