Created
November 24, 2016 08:41
-
-
Save random-robbie/ef4df3d883e6e36b90a40ba0be804e38 to your computer and use it in GitHub Desktop.
block tor exit nodes hitting your website
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
# create a new set for individual IP addresses | |
ipset -N tor iphash | |
# get a list of Tor exit nodes that can access $YOUR_IP, skip the comments and read line by line | |
wget -q https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$YOUR_IP -O -|sed '/^#/d' |while read IP | |
do | |
# add each IP address to the new set, silencing the warnings for IPs that have already been added | |
ipset -q -A tor $IP | |
done | |
# filter our new set in iptables | |
iptables -A INPUT -m set --match-set tor src -j DROP |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment