// TOR EXIT NODES / UFW
Tor Exit Nodes · UFW
UFW (Uncomplicated Firewall) shell script for Tor Exit Nodes. 1,388 CIDRs, refreshed daily.
// ufw_tor_allow.sh
#!/bin/bash # Tor IP Ranges # Updated: 2026-07-28 03:16:04 # 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 tor ufw allow from 2.56.10.36/32 ufw allow from 5.2.67.226/32 ufw allow from 5.2.79.190/32 ufw allow from 5.44.252.164/32 ufw allow from 5.45.98.162/32 ufw allow from 5.45.102.93/32 ufw allow from 5.45.104.176/32 ufw allow from 5.79.66.19/32 ufw allow from 5.83.143.18/32 ufw allow from 5.104.84.183/32 ufw allow from 5.104.86.6/32 ufw allow from 5.252.154.89/32 ufw allow from 5.253.247.27/32 ufw allow from 5.255.101.10/32 ufw allow from 5.255.102.26/32 ufw allow from 5.255.104.202/32 … (827 more lines)
// ufw_tor_deny.sh
#!/bin/bash # Tor IP Ranges # Updated: 2026-07-28 03:16:04 # 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 tor ufw deny from 2.56.10.36/32 ufw deny from 5.2.67.226/32 ufw deny from 5.2.79.190/32 ufw deny from 5.44.252.164/32 ufw deny from 5.45.98.162/32 ufw deny from 5.45.102.93/32 ufw deny from 5.45.104.176/32 ufw deny from 5.79.66.19/32 ufw deny from 5.83.143.18/32 ufw deny from 5.104.84.183/32 ufw deny from 5.104.86.6/32 ufw deny from 5.252.154.89/32 ufw deny from 5.253.247.27/32 ufw deny from 5.255.101.10/32 ufw deny from 5.255.102.26/32 ufw deny from 5.255.104.202/32 … (827 more lines)