Skip to content

Latest commit

 

History

1 Commit

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 

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-31)

IP DNS lookup Number of (black)lists
2.57.121.112 dns112.personaliseplus.com 9
62.60.130.201 - 9
93.174.95.106 battery.census.shodan.io 9
103.63.101.24 - 9
193.47.62.69 - 9
2.57.122.168 - 8
18.218.118.203 scan.visionheight.com 8
62.60.130.242 - 8
62.60.130.253 - 8
71.6.199.23 einstein.census.shodan.io 8
77.90.185.20 - 8
79.72.3.119 - 8
80.82.77.139 dojo.census.shodan.io 8
103.78.2.252 - 8
103.205.107.170 - 8
107.150.97.10 - 8
163.7.1.156 - 8
168.144.41.166 - 8
220.80.223.144 - 8
2.57.122.238 - 7
3.130.168.2 scan.visionheight.com 7
3.131.220.121 scan.visionheight.com 7
35.222.117.243 243.117.222.35.bc.googleusercontent.com 7
45.148.10.141 - 7
45.148.10.151 - 7
45.154.244.193 - 7
51.75.155.49 ip49.ip-51-75-155.eu 7
60.199.224.2 60-199-224-2.static.tfn.net.tw 7
64.62.197.137 - 7
66.132.172.186 186.172.132.66.censys-scanner.com 7
66.132.186.191 191.186.132.66.censys-scanner.com 7
66.132.195.55 55.195.132.66.censys-scanner.com 7
66.132.195.82 82.195.132.66.censys-scanner.com 7
66.132.195.123 123.195.132.66.censys-scanner.com 7
66.132.224.232 232.224.132.66.censys-scanner.com 7
66.240.192.138 census8.shodan.io 7
69.165.75.192 - 7
71.6.135.131 soda.census.shodan.io 7
80.82.77.33 sky.census.shodan.io 7
81.192.46.36 adsl-36-46-192-81.adsl.iam.net.ma 7
83.235.16.111 goevthes.static.otenet.gr 7
85.239.149.72 - 7
86.54.31.34 wine.census.shodan.io 7
88.151.33.203 - 7
89.21.67.145 89-21-67-145.infrawat.ch 7
92.118.39.50 - 7
94.102.49.193 cloud.census.shodan.io 7
95.173.161.147 slufse.accordinar.online 7
102.140.97.134 - 7
102.223.92.101 - 7
103.48.192.48 - 7
103.122.2.93 - 7
113.193.234.210 - 7
115.191.32.57 - 7
120.48.90.166 - 7
129.121.128.70 129-121-128-70.unifiedlayer.com 7
136.232.11.10 - 7
144.225.6.161 - 7
144.225.6.182 - 7
158.51.96.38 unknown.ip-xfer.net 7
160.187.247.119 - 7
167.94.146.52 52.146.94.167.censys-scanner.com 7
167.94.146.53 53.146.94.167.censys-scanner.com 7
167.94.146.59 59.146.94.167.censys-scanner.com 7
167.94.146.60 60.146.94.167.censys-scanner.com 7
167.94.146.63 63.146.94.167.censys-scanner.com 7
172.110.223.149 - 7
182.93.50.90 n18293z50l90.static.ctmip.net 7
185.93.89.118 - 7
185.226.197.47 zl-amsc-nl-gp1-wk131a.internet-census.org 7
190.129.122.185 - 7
192.248.150.180 192.248.150.180.vultrusercontent.com 7
193.46.255.86 - 7
193.233.199.37 - 7
195.178.110.217 - 7
195.178.110.218 - 7
197.153.57.103 - 7
199.45.154.50 50.154.45.199.censys-scanner.com 7
213.209.159.230 - 7
222.107.156.227 - 7

About

Daily feed of bad IPs (with blacklist hit scores)

Topics

Resources

Stars

2.4k stars

Watchers

80 watching

Forks

Releases

Packages

Used by

Contributors