Download current IP ranges (CIDRs) used by the Sucuri network.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
First 25 of 30 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type | Tag |
|---|---|---|
| 66.248.201.0/24 | ipv4 | AS30148 |
| 66.248.202.0/24 | ipv4 | AS30148 |
| 66.248.203.0/24 | ipv4 | AS30148 |
| 72.167.12.0/22 | ipv4 | AS30148 |
| 185.93.228.0/24 | ipv4 | AS30148 |
| 185.93.231.0/24 | ipv4 | AS30148 |
| 192.88.134.0/24 | ipv4 | AS30148 |
| 192.88.135.0/24 | ipv4 | AS30148 |
| 192.124.249.0/24 | ipv4 | AS30148 |
| 192.161.0.0/24 | ipv4 | AS30148 |
| 193.19.225.0/24 | ipv4 | AS30148 |
| 208.109.0.0/24 | ipv4 | AS30148 |
| 208.109.1.0/24 | ipv4 | AS30148 |
| 208.109.2.0/24 | ipv4 | AS30148 |
| 208.109.3.0/24 | ipv4 | AS30148 |
| 208.109.4.0/22 | ipv4 | AS30148 |
| 208.109.80.0/24 | ipv4 | AS30148 |
| 2a02:fe80:11::/48 | ipv6 | AS30148 |
| 2a02:fe80:12::/48 | ipv6 | AS30148 |
| 2a02:fe80:14::/48 | ipv6 | AS30148 |
| 2a02:fe80:15::/48 | ipv6 | AS30148 |
| 2a02:fe80:16::/48 | ipv6 | AS30148 |
| 2a02:fe80:17::/48 | ipv6 | AS30148 |
| 2a02:fe80:18::/48 | ipv6 | AS30148 |
| 2a02:fe80:20::/48 | ipv6 | AS30148 |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/sucuri.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/sucuri.txt
# Download and block Sucuri IPs with iptables
wget -O sucuri_ips.txt https://cloud-ip-ranges.com/download/sucuri.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < sucuri_ips.txt
# Download and block Sucuri IPs with UFW
wget -O sucuri_ips.txt https://cloud-ip-ranges.com/download/sucuri.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < sucuri_ips.txt
# Create fail2ban filter for Sucuri
sudo tee /etc/fail2ban/filter.d/sucuri-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/sucuri-block.conf << EOF
[sucuri-block]
enabled = true
filter = sucuri-block
action = iptables-allports[name=sucuri]
logpath = /tmp/sucuri_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/sucuri_ips.txt https://cloud-ip-ranges.com/download/sucuri.txt
sudo systemctl restart fail2ban
# Create alias table for Sucuri IPs
# 1. Download the IP list
wget -O sucuri_ips.txt https://cloud-ip-ranges.com/download/sucuri.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "SUCURI_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=SUCURI_BLOCK
These IP ranges cover the Sucuri network and are updated regularly from its official source. The data includes IPv4 and IPv6 ranges. Last update was about 5 hours ago.