-
-
Save thefkboss/fa03eb9df4f6f993a0fe to your computer and use it in GitHub Desktop.
A script that analyses the log files /var/log/auth.log* for illegal break-in attempts and writes all output to $logdir – Check http://blog.philippklaus.de/2010/02/analyse-illegal-ssh-login-attempts/
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 | |
# This script analyses the log files /var/log/auth.log* for | |
# illegal break-in attempts and writes all output to $logdir. | |
# <http://blog.philippklaus.de/2010/02/analyse-illegal-ssh-login-attempts/#comment-12211> | |
# inspired by <http://goo.gl/QMOhiU> | |
# and <http://filipivianna.blogspot.com/2009/10/checking-authlog-for-ssh-brute-force.html> | |
logbasedir=~/logs | |
logdir="$logbasedir"/$(date +%F) | |
mkdir -p "$logdir" | |
tmpfile="/tmp/breakinattempts.txt" | |
logfile="$logdir/invalid_passwords.txt" | |
zgrep -i -v "Failed password for invalid user" /var/log/auth.log* | grep -i "Failed password" >"$tmpfile" | |
cat "$tmpfile" | cut -d " " -f 10 | sort | uniq | while read line ; do | |
echo -n "$line "; cat "$tmpfile" | grep "$line" | wc -l; | |
done | sort -n -k 2 >"$logfile" | |
rm "$tmpfile" | |
echo "Created $logfile with the absolute frequency of break-in attempts with an existing user name but an invalid password." | |
logfile="$logdir/invalid_users.txt" | |
zgrep -i "Failed password for invalid user" /var/log/auth.log* >"$tmpfile" | |
cat "$tmpfile" | cut -d " " -f 11 | sort | uniq | while read line ; do | |
echo -n "$line "; cat "$tmpfile" | grep "$line" | wc -l; | |
done | sort -n -k 2 >"$logfile" | |
rm "$tmpfile" | |
echo "Created $logfile with the absolute frequency of break-in attempts with a non-existing user name." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment