Skip to content

Instantly share code, notes, and snippets.

@mashihua
Created August 6, 2014 06:34
Show Gist options
  • Save mashihua/64fc4f49c137a5bc984e to your computer and use it in GitHub Desktop.
Save mashihua/64fc4f49c137a5bc984e to your computer and use it in GitHub Desktop.
#!/bin/bash
for i in `netstat -an | grep -i ':80 '| grep 'EST' | awk '{print $5}' | cut -d : -f 1 | sort | uniq -c | awk '{if($1 > 5) {print $2}}'`
do
echo $i >> /tmp/blockip
/sbin/iptables -A INPUT -p tcp -j DROP -s $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment