IPsum is a threat intelligence feed based on 30+ different publicly available lists of suspicious and/or malicious IP addresses. All lists are automatically retrieved and parsed on a daily (24h) basis and the final result is pushed to this repository. List is made of IP addresses together with a total number of (black)list occurrence (for each). Greater the number, lesser the chance of false positive detection and/or dropping in (inbound) monitored traffic. Also, list is sorted from most (problematic) to least occurent IP addresses.
As an example, to get a fresh and ready-to-deploy auto-ban list of "bad IPs" that appear on at least 3 (black)lists you can run:
curl --compressed https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null | grep -v "#" | grep -v -E "\s[1-2]$" | cut -f 1
If you want to try it with ipset
, you can do the following:
sudo su
apt-get -qq install iptables ipset
ipset -q flush ipsum
ipset -q create ipsum hash:net
for ip in $(curl --compressed https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null | grep -v "#" | grep -v -E "\s[1-2]$" | cut -f 1); do ipset add ipsum $ip; done
iptables -D INPUT -m set --match-set ipsum src -j DROP 2>/dev/null
iptables -I INPUT -m set --match-set ipsum src -j DROP
In directory levels you can find preprocessed raw IP lists based on number of blacklist occurrences (e.g. levels/3.txt holds IP addresses that can be found on 3 or more blacklists).
IP | DNS lookup | Number of (black)lists |
---|---|---|
179.60.147.159 | - | 8 |
89.234.157.254 | marylou.nos-oignons.net | 8 |
162.247.74.74 | - | 8 |
162.247.72.199 | jaffer.tor-exit.calyxinstitute.org | 8 |
141.98.6.197 | - | 8 |
185.220.102.8 | 185-220-102-8.torservers.net | 8 |
61.177.172.104 | - | 8 |
185.129.62.62 | tor01.zencurity.com | 8 |
61.177.172.90 | - | 8 |
51.77.116.67 | ns3132607.ip-51-77-116.eu | 7 |
103.251.167.21 | tor-exit-at-the.quesadilla.party | 7 |
109.70.100.20 | tor-exit-anonymizer.appliedprivacy.net | 7 |
195.178.120.113 | - | 7 |
185.220.100.255 | tor-exit-4.zbau.f3netze.de | 7 |
185.220.100.254 | tor-exit-3.zbau.f3netze.de | 7 |
195.178.120.212 | - | 7 |
198.96.155.3 | exit.tor.uwaterloo.ca | 7 |
185.220.101.22 | berlin01.tor-exit.artikel10.org | 7 |
51.68.204.182 | ns3128477.ip-51-68-204.eu | 7 |
51.77.118.44 | ns3136360.ip-51-77-118.eu | 7 |