Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Logo

License

About

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 (every 24 hours) basis and the final result is pushed to this repository. The feed contains IP addresses plus an occurrence count (how many source lists each IP appears on). Higher counts generally mean higher confidence and fewer false positives when blocking inbound traffic. Also, list is sorted by occurrence count (highest to lowest).

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 -fsSL https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null | grep -v "^#" | grep -Ev '[[:space:]]([12])$' | cut -f 1

If you want to try it with ipset, you can do the following:

sudo -i
apt-get update && apt-get install -y iptables ipset
ipset -q flush ipsum
ipset -q create ipsum hash:ip
for ip in $(curl https://raw.githubusercontent.com/stamparm/ipsum/master/ipsum.txt 2>/dev/null | grep -v "#" | grep -Ev '[[:space:]]([12])$' | 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).

Wall of Shame (2026-08-10)

IP DNS lookup Number of (black)lists
195.178.110.137 - 9
31.77.227.120 - 8
43.153.206.227 - 8
45.148.10.151 - 8
45.148.10.152 - 8
45.154.244.193 - 8
65.49.139.223 65.49.139.223.nwinternet.com 8
77.90.185.20 - 8
80.82.77.33 sky.census.shodan.io 8
89.126.211.166 - 8
129.151.171.7 - 8
152.53.225.147 v2202504267383332676.goodsrv.de 8
195.93.244.97 ib.systems 8
2.57.122.53 - 7
2.57.122.168 - 7
2.57.122.209 - 7
40.124.173.16 azpdsgp9y705.stretchoid.com 7
44.211.197.174 ec2-44-211-197-174.compute-1.amazonaws.com 7
45.77.61.56 45.77.61.56.vultrusercontent.com 7
45.92.33.82 - 7
45.148.10.141 - 7
45.148.10.147 - 7
45.148.10.157 - 7
45.148.10.240 - 7
45.198.224.26 - 7
64.89.160.242 - 7
66.132.195.52 52.195.132.66.censys-scanner.com 7
66.132.224.226 226.224.132.66.censys-scanner.com 7
71.6.135.131 soda.census.shodan.io 7
71.6.165.200 census12.shodan.io 7
79.72.57.232 - 7
92.5.66.49 - 7
92.118.39.77 - 7
107.155.48.46 - 7
116.99.171.175 dynamic-ip-adsl.viettel.vn 7
118.26.111.107 - 7
144.202.92.17 144.202.92.17.vultrusercontent.com 7
144.225.6.182 - 7
147.185.132.64 - 7
148.66.142.9 9.142.66.148.host.secureserver.net 7
164.92.109.155 - 7
165.154.10.165 - 7
167.94.146.48 48.146.94.167.censys-scanner.com 7
167.94.146.54 54.146.94.167.censys-scanner.com 7
167.94.146.57 57.146.94.167.censys-scanner.com 7
167.94.146.59 59.146.94.167.censys-scanner.com 7
172.94.9.231 - 7
185.246.130.20 - 7
193.24.211.204 - 7
193.32.162.84 - 7
194.164.107.4 - 7

About

Daily feed of bad IPs (with blacklist hit scores)

Topics

Resources

Stars

2.3k stars

Watchers

80 watching

Forks

Releases

Packages

Used by

Contributors