Last active
August 29, 2015 13:58
-
-
Save kennedyj/9940351 to your computer and use it in GitHub Desktop.
Check local apache certs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# Usage: ./check_apache_certs -p apachepath | |
# | |
CUT=$(which cut) | |
SED=$(which sed) | |
GREP=$(which grep) | |
AWK=$(which awk) | |
SORT=$(which sort) | |
UNIQ=$(which uniq) | |
SUDO=$(which sudo) | |
OPENSSL=$(which openssl) | |
DATE=$(which date) | |
PYTHON=$(which python) | |
PROGNAME=`/usr/bin/basename $0` | |
PROGPATH=`echo $0 | sed -e 's,[\\/][^\\/][^\\/]*$,,'` | |
REVISION="1.0.0" | |
. $PROGPATH/utils.sh | |
print_usage() { | |
echo "Usage: $PROGNAME [-p Apache Path] [-w warning] [-c critical]" | |
echo "Usage: $PROGNAME --help" | |
echo "Usage: $PROGNAME --version" | |
} | |
print_help() { | |
print_revision $PROGNAME $REVISION | |
echo "" | |
print_usage | |
echo "" | |
echo "Apache SSL nagios check" | |
echo "" | |
support | |
} | |
exitstatus=$STATE_OK #default | |
while test -n "$1"; do | |
case "$1" in | |
--help) | |
print_help | |
exit $STATE_OK | |
;; | |
--version) | |
print_revision $PROGNAME $REVISION | |
exit $STATE_OK | |
;; | |
-V) | |
print_revision $PROGNAME $REVISION | |
exit $STATE_OK | |
;; | |
-p) | |
path=$2 | |
shift | |
;; | |
-w) | |
warning=$2 | |
shift | |
;; | |
-c) | |
critical=$2 | |
shift | |
;; | |
*) | |
echo "Unknown argument: $1" | |
print_usage | |
exit $STATE_UNKNOWN | |
;; | |
esac | |
shift | |
done | |
if [ -z "$path" ]; then | |
path="/etc/apache2/sites-enabled" | |
fi | |
if [ -z "$warning" ]; then | |
warning=45 | |
fi | |
if [ -z "$critical" ]; then | |
critical=15 | |
fi | |
CERTS=$($SUDO $GREP -rh SSLCertificateFile $path/* | $GREP -v '^\s*#\|snakeoil' | $AWK '{print $2}' | $SORT | $UNIQ) | |
for cert in $CERTS; | |
do | |
EXPIRES=$($SUDO $OPENSSL x509 -enddate -noout -in $cert | $CUT -d"=" -f 2) | |
SUBJECT=$($SUDO $OPENSSL x509 -subject -noout -in $cert | $SED 's~.*/CN=\(.*\)~\1~') | |
THEN=$($DATE --date="$EXPIRES" "+%s") | |
NOW=$($DATE "+%s") | |
DAYS=$($PYTHON -c "from datetime import datetime; print (datetime.utcfromtimestamp(float($THEN)) - datetime.utcfromtimestamp(float($NOW))).days") | |
HUMAN=$($PYTHON -c "from datetime import datetime; print datetime.utcfromtimestamp(float($THEN)) - datetime.utcfromtimestamp(float($NOW))") | |
if [ "$DAYS" -le "$warning" ] && [ "$exitstatus" -lt "$STATE_WARNING" ]; | |
then | |
exitstatus=$STATE_WARNING | |
fi | |
if [ "$DAYS" -le "$critical" ] && [ "$exitstatus" -lt "$STATE_CRITICAL" ]; | |
then | |
exitstatus=$STATE_WARNING | |
fi | |
echo "$SUBJECT expires in $HUMAN" | |
done | |
exit $exitstatus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
WGET=$(which wget) | |
CURL=$(which curl) | |
SUDO=$(which sudo) | |
CHMOD=$(which chmod) | |
TEE=$(which tee) | |
CHECK_URL="https://gist.githubusercontent.com/kennedyj/9940351/raw/1a650bb85fb5da15a81ae7b36b02f9ccb5abf481/check_apache_certs.sh" | |
NAGIOS_HOME="/usr/local/nagios" | |
CHECK_FILE="check_apache_certs" | |
NRPE_CONFIG="$NAGIOS_HOME/etc/nrpe.cfg" | |
CHECK_PATH="$NAGIOS_HOME/libexec" | |
if [ ! -e "$CHECK_PATH" ]; | |
then | |
echo "The plugin path doesn't exist" | |
exit 1 | |
fi | |
if [ ! -e "$NRPE_CONFIG" ]; | |
then | |
echo "The NRPE configuration doesn't exist" | |
exit 1 | |
fi | |
if [ -e "$WGET" ]; | |
then | |
$SUDO $WGET $CHECK_URL -O $CHECK_PATH/$CHECK_FILE | |
elif [ -e "$CURL" ]; | |
then | |
$SUDO $CURL -s $CHECK_URL -o $CHECK_PATH/$CHECK_FILE | |
else | |
echo "you need to have either curl or wget installed" | |
exit 1 | |
fi | |
$SUDO $CHMOD 755 $CHECK_PATH/$CHECK_FILE | |
echo "command[$CHECK_FILE]=$CHECK_PATH/$CHECK_FILE" | $SUDO $TEE -a $NRPE_CONFIG > /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment