Created
April 2, 2016 22:07
-
-
Save vajapravin/e3d95eefa0156ec51392bcd593dfd418 to your computer and use it in GitHub Desktop.
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
tail -fn0 /var/log/auth.log | \ | |
while read line ; do | |
echo "$line" | grep "password check failed for user" | |
if [ $? = 0 ] | |
then | |
echo "Wrong Login Attempt" | mail -s "Login Password Wrong - GigoLinux" [email protected] | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment