https://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.txt Address list per script
Fetch the list and import it into an address list called blocklist:
/tool fetch url="https://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.txt" dst-path=blocklist.txt
:foreach line in=[/file get blocklist.txt contents] do={
/ip firewall address-list add list=blocklist address=$line comment="CINS Army Bad Guys"
} Use the list in the firewall
/ip firewall filter add chain=forward src-address-list=blocklist action=drop comment="CINS Army Bad Guys"
/ip firewall filter add chain=forward dst-address-list=blocklist action=drop comment="CINS Army Bad Guys" 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://cinsscore.com/list/ci-badguys.txt Manual with nftables
wget -qO /tmp/blocklist.txt "https://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.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://cinsscore.com/list/ci-badguys.txt curl -fsSL "https://cinsscore.com/list/ci-badguys.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:"CINS Army Bad Guys match";
ip.src; dataset:isset,blocklist, type string, load blocklist.txt; sid:1000001;) Recent changes
Recently added entries
- 1.12.229.231
- 1.145.32.156
- 1.177.162.2
- 1.189.116.185
- 1.192.176.104
- 1.193.63.185
- 1.193.63.212
- 1.199.130.189
- 1.20.104.62
- 1.20.163.158
- 1.20.175.161
- 1.205.194.170
- 1.207.45.210
- 1.24.16.101
- 1.24.16.119
- 1.24.16.121
- 1.24.16.132
- 1.24.16.134
- 1.24.16.160
- 1.24.16.161
- 1.24.16.168
- 1.24.16.169
- 1.24.16.176
- 1.24.16.178
- 1.24.16.181
Recently removed entries
- 1.183.148.62
- 1.183.160.23
- 1.193.37.207
- 1.197.254.165
- 1.20.163.72
- 1.220.119.115
- 1.24.16.11
- 1.24.16.110
- 1.24.16.111
- 1.24.16.123
- 1.24.16.124
- 1.24.16.126
- 1.24.16.128
- 1.24.16.136
- 1.24.16.137
- 1.24.16.139
- 1.24.16.146
- 1.24.16.151
- 1.24.16.152
- 1.24.16.155
- 1.24.16.159
- 1.24.16.16
- 1.24.16.163
- 1.24.16.167
- 1.24.16.180
