https://bl.isx.fr/raw 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://bl.isx.fr/raw Address list per script
Fetch the list and import it into an address list called blocklist:
/tool fetch url="https://bl.isx.fr/raw" 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://bl.isx.fr/raw" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
/ip firewall address-list add list=blocklist address=$line comment="ISX Solutions Blocklist"
} Use the list in the firewall
/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="ISX Solutions Blocklist"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="ISX Solutions Blocklist" 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://bl.isx.fr/raw Manual with nftables
wget -qO /tmp/blocklist.txt "https://bl.isx.fr/raw"
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://bl.isx.fr/raw" | 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://bl.isx.fr/raw"
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://bl.isx.fr/raw - 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://bl.isx.fr/raw curl -fsSL "https://bl.isx.fr/raw" -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:"ISX Solutions Blocklist match";
ip.src; dataset:isset,blocklist, type string, load blocklist.txt; sid:1000001;) Recent changes
Recently added entries
- 47.154.110.207
- 59.46.193.187
- 62.60.130.24
- 78.153.140.199
- 172.94.9.133
- 188.213.31.205
- 192.253.248.92
- 193.233.85.49
- 223.104.199.7
Recently removed entries
- 31.77.206.122
- 34.12.93.130
- 34.141.134.77
- 34.178.140.17
- 77.55.210.37
- 92.55.176.57
- 92.208.72.113
- 102.102.151.103
- 104.251.180.9
- 141.11.155.8
- 141.11.155.27
- 141.98.9.24
- 154.241.59.220
- 179.210.64.86
- 182.182.160.227
- 185.34.35.87
- 185.217.190.109
- 191.187.43.226
- 198.163.194.44
- 203.154.91.109
- 203.154.91.241
- 212.47.140.78
- 217.8.42.92
- 218.153.104.32
