Skip to content

stamparm/ipsum

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 (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:ip
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).

Wall of Shame (2024-09-30)

IP DNS lookup Number of (black)lists
128.199.225.7 - 10
183.81.169.238 - 10
194.169.175.37 - 10
45.148.10.242 - 9
85.209.11.27 - 9
109.120.156.102 healthy-story.aeza.network 9
159.65.147.193 panel.mydigitalads.in 9
193.32.162.65 - 9
194.169.175.38 - 9
45.148.10.46 - 8
45.148.10.240 - 8
64.227.145.217 - 8
77.73.131.144 prime-relation.aeza.network 8
80.75.212.9 tube-hosting.com 8
80.82.77.33 sky.census.shodan.io 8
80.82.77.139 dojo.census.shodan.io 8
85.209.11.254 - 8
89.235.116.181 - 8
93.113.63.8 - 8
103.142.86.221 - 8
109.120.176.11 AKoryakin.aeza.network 8
154.213.184.15 - 8
159.223.3.111 - 8
174.138.26.166 - 8
192.42.116.208 11.tor-exit.nothingtohide.nl 8
209.38.249.215 - 8
212.76.27.39 - 8
4.255.101.253 azpdesc16.stretchoid.com 7
43.135.155.251 - 7
43.159.148.17 - 7
45.84.89.2 server-0-2.survey.inspici.com 7
45.84.89.3 server-0-3.survey.inspici.com 7
45.139.122.176 - 7
47.251.104.144 - 7
80.67.167.81 nosoignons.cust.milkywan.net 7
80.82.77.202 rnd.group-ib.com 7
83.222.191.62 - 7
89.248.167.131 mason.census.shodan.io 7
92.42.96.51 - 7
92.255.85.107 - 7
93.174.95.106 battery.census.shodan.io 7
94.254.0.234 h-94-254-0-234.na.cust.bahnhof.se 7
103.251.167.20 - 7
103.252.88.6 rw-hosting.fr 7
109.74.204.123 academyforinternetresearch.org 7
122.46.16.230 - 7
125.122.12.36 - 7
128.199.99.204 ekualsys.com 7
144.22.192.181 - 7
146.190.244.91 - 7
147.185.132.15 - 7
147.185.132.115 - 7
147.185.132.162 - 7
178.20.55.182 marcuse-2.nos-oignons.net 7
185.142.236.34 hat.census.shodan.io 7
185.165.191.26 - 7
185.220.100.255 tor-exit-4.zbau.f3netze.de 7
185.224.128.59 - 7
192.42.116.179 27.tor-exit.nothingtohide.nl 7
192.42.116.211 14.tor-exit.nothingtohide.nl 7
192.250.224.76 vps.click4tix.com 7
193.32.162.29 mail.whatami.co 7
193.32.162.79 - 7
193.32.162.83 - 7
194.50.16.26 what.are.you.looking.for 7
194.233.67.204 vmi1221256.contaboserver.net 7
196.241.66.194 - 7
206.168.34.41 unused-space.coop.net 7
207.90.244.2 - 7
207.90.244.3 - 7
207.90.244.4 - 7
207.90.244.5 - 7
207.90.244.14 - 7
211.224.41.185 - 7
178.20.55.16 marcuse.nos-oignons.net 7

Releases

No releases published

Packages

No packages published