Created
March 12, 2010 18:40
-
-
Save nevans/330605 to your computer and use it in GitHub Desktop.
what IPs are trying to hack my server
This file contains hidden or 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
sudo last -i -f /var/log/btmp | | |
awk '{ per[$3] += 1 } END { for (i in per) print per[i], i }' | | |
sort -n | | |
tail -15 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment