Skip to content

Instantly share code, notes, and snippets.

View basisbit's full-sized avatar
:octocat:
eat, sleep, code, repeat

Stefan basisbit

:octocat:
eat, sleep, code, repeat
  • Germany
View GitHub Profile
@Manouchehri
Manouchehri / cloudflare.sh
Last active March 20, 2024 11:44
Allow CloudFlare only
# Source:
# https://www.cloudflare.com/ips
# https://support.cloudflare.com/hc/en-us/articles/200169166-How-do-I-whitelist-CloudFlare-s-IP-addresses-in-iptables-
for i in `curl https://www.cloudflare.com/ips-v4`; do iptables -I INPUT -p tcp -m multiport --dports http,https -s $i -j ACCEPT; done
for i in `curl https://www.cloudflare.com/ips-v6`; do ip6tables -I INPUT -p tcp -m multiport --dports http,https -s $i -j ACCEPT; done
# Avoid racking up billing/attacks
# WARNING: If you get attacked and CloudFlare drops you, your site(s) will be unreachable.
iptables -A INPUT -p tcp -m multiport --dports http,https -j DROP