https://lists.blocklist.de/lists/all.txt Open raw list Description
Filter list covering malware. Format: IPs (IPv4). See the project homepage for details and inclusion criteria.
Integration
- Go to Firewall → pfBlockerNG → DNSBL → DNSBL Groups (or IP for IP lists).
- Click Add, give the group a name and add the URL below as source (Format: Auto).
- Save, then run Update → Force Reload.
https://lists.blocklist.de/lists/all.txt Address list per script
Fetch the list and import it into an address list called blocklist:
/tool fetch url="https://lists.blocklist.de/lists/all.txt" dst-path=blocklist.rsc
/import blocklist.rsc If the list is a plain text file with one address or CIDR per line, convert it first:
/tool fetch url="https://lists.blocklist.de/lists/all.txt" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
/ip firewall address-list add list=blocklist address=$line comment="BlocklistDE All"
} Use the list in the firewall
/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="BlocklistDE All"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="BlocklistDE All" Schedule the fetch with /system scheduler to keep the list current. Very large lists consume RAM, so check the available memory of your device first.
banIP (recommended)
- Install the package:
opkg update && opkg install banip luci-app-banip - Open LuCI → Services → banIP → Feeds and add a custom feed with the URL below.
- Enable the feed and click Save & Apply.
https://lists.blocklist.de/lists/all.txt Manual with nftables
wget -qO /tmp/blocklist.txt "https://lists.blocklist.de/lists/all.txt"
nft add set inet fw4 blocklist { type ipv4_addr; flags interval; }
nft -f - <<EOF
$(awk '!/^[#;]/ && NF {print "add element inet fw4 blocklist { " $1 " }"}' /tmp/blocklist.txt)
EOF
nft add rule inet fw4 forward ip saddr @blocklist drop ipset create blocklist hash:net -exist
curl -fsSL "https://lists.blocklist.de/lists/all.txt" | grep -Eo '^[0-9]{1,3}(.[0-9]{1,3}){3}(/[0-9]{1,2})?' |
while read -r net; do ipset add blocklist "$net" -exist; done
iptables -I INPUT -m set --match-set blocklist src -j DROP
iptables -I FORWARD -m set --match-set blocklist src -j DROP Persist the set and re-run the download from cron to keep it current:
ipset save blocklist -f /etc/ipset.blocklist
# /etc/cron.daily/blocklist
Add the list as an ipset in /etc/firehol/firehol.conf:
ipset4 create blocklist hash:net
ipset4 addfile blocklist "https://lists.blocklist.de/lists/all.txt"
blacklist4 full inface any src ipset:blocklist Reload with firehol try and confirm before making it permanent.
- Go to Firewall → Aliases and click +.
- Choose type URL Table (IPs), set a refresh interval (for example 1 day) and paste the URL below.
- Save and apply, then use the alias as source in a block rule under Firewall → Rules.
https://lists.blocklist.de/lists/all.txt - Go to Firewall → pfBlockerNG → IP → IPv4 and click Add.
- Paste the URL below as source, set State to ON and pick the action (Deny Both is the usual choice).
- Save, then run Update → Force Reload → IP.
https://lists.blocklist.de/lists/all.txt curl -fsSL "https://lists.blocklist.de/lists/all.txt" -o /var/lib/suricata/data/blocklist.txt Reference the file from a rule using a dataset:
alert ip [!$HOME_NET] any -> $HOME_NET any (msg:"BlocklistDE All match";
ip.src; dataset:isset,blocklist, type string, load blocklist.txt; sid:1000001;) Recent changes
Recently added entries
- 101.206.107.245
- 101.47.152.216
- 101.91.126.150
- 101.96.195.253
- 101.96.208.253
- 102.129.50.167
- 102.129.54.77
- 102.129.57.141
- 102.129.61.2
- 102.129.61.37
- 102.202.74.104
- 102.202.74.96
- 102.206.92.230
- 102.212.183.86
- 102.214.44.117
- 102.215.53.46
- 102.220.160.170
- 102.220.160.39
- 102.220.161.27
- 102.220.161.29
- 102.220.173.146
- 102.249.37.24
- 102.38.3.104
- 102.64.216.202
- 102.64.32.179
Recently removed entries
- 1.12.48.131
- 1.192.80.248
- 1.20.178.157
- 1.250.67.190
- 1.27.251.252
- 1.39.172.143
- 1.92.151.36
- 100.48.78.137
- 101.128.100.106
- 101.13.4.122
- 101.13.5.30
- 101.200.124.12
- 101.255.158.172
- 101.36.118.148
- 101.47.28.226
- 101.47.8.187
- 101.51.157.107
- 101.96.208.174
- 101.99.88.90
- 102.0.26.164
- 102.143.21.70
- 102.176.181.15
- 102.213.179.104
- 102.213.68.21
- 102.222.89.144
