Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oxicode/fd693e634d70a1da9ca01bc63a330021 to your computer and use it in GitHub Desktop.
Save Oxicode/fd693e634d70a1da9ca01bc63a330021 to your computer and use it in GitHub Desktop.
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" mail@gmail.com
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment