Download current IP ranges (CIDRs) used by the Stretchoid scanner.
Choose your preferred format. All downloads are permalinks that always provide the latest data.
First 25 of 142 ranges. Download the full list above, or search for a specific IP.
| CIDR | Type | Tag |
|---|---|---|
| 4.227.180.232/32 | ipv4 | stretchoid |
| 13.86.104.14/32 | ipv4 | stretchoid |
| 13.86.116.162/32 | ipv4 | stretchoid |
| 13.89.121.92/32 | ipv4 | stretchoid |
| 13.89.125.229/32 | ipv4 | stretchoid |
| 20.14.72.210/32 | ipv4 | stretchoid |
| 20.14.73.54/32 | ipv4 | stretchoid |
| 20.14.89.155/32 | ipv4 | stretchoid |
| 20.14.90.54/32 | ipv4 | stretchoid |
| 20.29.23.77/32 | ipv4 | stretchoid |
| 20.40.210.26/32 | ipv4 | stretchoid |
| 20.51.234.233/32 | ipv4 | stretchoid |
| 20.55.35.217/32 | ipv4 | stretchoid |
| 20.55.36.63/32 | ipv4 | stretchoid |
| 20.64.97.136/32 | ipv4 | stretchoid |
| 20.64.104.235/32 | ipv4 | stretchoid |
| 20.64.105.20/32 | ipv4 | stretchoid |
| 20.64.105.115/32 | ipv4 | stretchoid |
| 20.64.105.127/32 | ipv4 | stretchoid |
| 20.64.105.156/32 | ipv4 | stretchoid |
| 20.64.106.116/32 | ipv4 | stretchoid |
| 20.64.106.118/32 | ipv4 | stretchoid |
| 20.65.136.30/32 | ipv4 | stretchoid |
| 20.65.177.158/32 | ipv4 | stretchoid |
| 20.65.193.150/32 | ipv4 | stretchoid |
# Download with curl
curl -O https://cloud-ip-ranges.com/download/stretchoid.txt
# Or download with wget
wget https://cloud-ip-ranges.com/download/stretchoid.txt
# Download and block Stretchoid IPs with iptables
wget -O stretchoid_ips.txt https://cloud-ip-ranges.com/download/stretchoid.txt
while read ip; do
iptables -A INPUT -s $ip -j DROP
iptables -A OUTPUT -d $ip -j DROP
done < stretchoid_ips.txt
# Download and block Stretchoid IPs with UFW
wget -O stretchoid_ips.txt https://cloud-ip-ranges.com/download/stretchoid.txt
while read ip; do
ufw deny from $ip
ufw deny to $ip
done < stretchoid_ips.txt
# Create fail2ban filter for Stretchoid
sudo tee /etc/fail2ban/filter.d/stretchoid-block.conf << EOF
[Definition]
failregex = ^.*$
ignoreregex =
EOF
# Create jail configuration
sudo tee /etc/fail2ban/jail.d/stretchoid-block.conf << EOF
[stretchoid-block]
enabled = true
filter = stretchoid-block
action = iptables-allports[name=stretchoid]
logpath = /tmp/stretchoid_ips.txt
findtime = 1
bantime = -1
maxretry = 1
EOF
# Download IP list and restart fail2ban
wget -O /tmp/stretchoid_ips.txt https://cloud-ip-ranges.com/download/stretchoid.txt
sudo systemctl restart fail2ban
# Create alias table for Stretchoid IPs
# 1. Download the IP list
wget -O stretchoid_ips.txt https://cloud-ip-ranges.com/download/stretchoid.txt
# 2. In pfSense/OPNsense web interface:
# - Go to Firewall > Aliases
# - Create new alias named "STRETCHOID_BLOCK"
# - Type: Network(s)
# - Import the downloaded file
#
# 3. Create firewall rule:
# - Go to Firewall > Rules > WAN
# - Add rule: Action=Block, Source=STRETCHOID_BLOCK
These are the addresses Stretchoid scans the internet from, updated regularly. Use them to tag background scanning in your firewall and IDS logs so it does not read as a targeted attack, or to block the scanner outright if you would rather not be indexed. Last update was 25 minutes ago.