// STATUSCAKE / UFW
statuscake · UFW
UFW (Uncomplicated Firewall) shell script for statuscake. 183 CIDRs, refreshed daily.
// ufw_statuscake_allow.sh
#!/bin/bash # Statuscake IP Ranges # Updated: 2026-06-18 03:21:17 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 02:00 UTC # UFW allow rules for statuscake ufw allow from 13.48.110.214/32 ufw allow from 13.48.238.157/32 ufw allow from 13.49.141.132/32 ufw allow from 13.245.199.158/32 ufw allow from 13.245.222.203/32 ufw allow from 13.246.54.122/32 ufw allow from 13.247.17.60/32 ufw allow from 15.160.68.179/32 ufw allow from 15.161.88.159/32 ufw allow from 16.170.114.19/32 ufw allow from 18.102.1.62/32 ufw allow from 18.102.253.202/32 ufw allow from 34.13.166.3/32 ufw allow from 34.13.185.113/32 ufw allow from 34.13.188.75/32 ufw allow from 34.22.96.192/32 … (167 more lines)
// ufw_statuscake_deny.sh
#!/bin/bash # Statuscake IP Ranges # Updated: 2026-06-18 03:21:17 # Source: https://github.com/rezmoss/cloud-provider-ip-addresses # License: https://github.com/rezmoss/cloud-provider-ip-addresses/LICENSE # This file is generated automatically. Do not edit it directly. # Updates daily at 02:00 UTC # UFW deny rules for statuscake ufw deny from 13.48.110.214/32 ufw deny from 13.48.238.157/32 ufw deny from 13.49.141.132/32 ufw deny from 13.245.199.158/32 ufw deny from 13.245.222.203/32 ufw deny from 13.246.54.122/32 ufw deny from 13.247.17.60/32 ufw deny from 15.160.68.179/32 ufw deny from 15.161.88.159/32 ufw deny from 16.170.114.19/32 ufw deny from 18.102.1.62/32 ufw deny from 18.102.253.202/32 ufw deny from 34.13.166.3/32 ufw deny from 34.13.185.113/32 ufw deny from 34.13.188.75/32 ufw deny from 34.22.96.192/32 … (167 more lines)