|
| 1 | +#!/bin/bash |
| 2 | +set -euo pipefail # Exit on error, undefined vars, and pipeline failures |
| 3 | +IFS=$'\n\t' # Stricter word splitting |
| 4 | + |
| 5 | +# 1. Extract Docker DNS info BEFORE any flushing |
| 6 | +DOCKER_DNS_RULES=$(iptables-save -t nat | grep "127\.0\.0\.11" || true) |
| 7 | + |
| 8 | +# Flush existing rules and delete existing ipsets |
| 9 | +iptables -F |
| 10 | +iptables -X |
| 11 | +iptables -t nat -F |
| 12 | +iptables -t nat -X |
| 13 | +iptables -t mangle -F |
| 14 | +iptables -t mangle -X |
| 15 | +ipset destroy allowed-domains 2>/dev/null || true |
| 16 | + |
| 17 | +# 2. Selectively restore ONLY internal Docker DNS resolution |
| 18 | +if [ -n "$DOCKER_DNS_RULES" ]; then |
| 19 | + echo "Restoring Docker DNS rules..." |
| 20 | + iptables -t nat -N DOCKER_OUTPUT 2>/dev/null || true |
| 21 | + iptables -t nat -N DOCKER_POSTROUTING 2>/dev/null || true |
| 22 | + echo "$DOCKER_DNS_RULES" | xargs -L 1 iptables -t nat |
| 23 | +else |
| 24 | + echo "No Docker DNS rules to restore" |
| 25 | +fi |
| 26 | + |
| 27 | +# First allow DNS and localhost before any restrictions |
| 28 | +# Allow outbound DNS |
| 29 | +iptables -A OUTPUT -p udp --dport 53 -j ACCEPT |
| 30 | +# Allow inbound DNS responses |
| 31 | +iptables -A INPUT -p udp --sport 53 -j ACCEPT |
| 32 | +# Allow outbound SSH |
| 33 | +iptables -A OUTPUT -p tcp --dport 22 -j ACCEPT |
| 34 | +# Allow inbound SSH responses |
| 35 | +iptables -A INPUT -p tcp --sport 22 -m state --state ESTABLISHED -j ACCEPT |
| 36 | +# Allow localhost |
| 37 | +iptables -A INPUT -i lo -j ACCEPT |
| 38 | +iptables -A OUTPUT -o lo -j ACCEPT |
| 39 | + |
| 40 | +# Create ipset with CIDR support |
| 41 | +ipset create allowed-domains hash:net |
| 42 | + |
| 43 | +# Fetch GitHub meta information and aggregate + add their IP ranges |
| 44 | +echo "Fetching GitHub IP ranges..." |
| 45 | +gh_ranges=$(curl -s https://api.github.com/meta) |
| 46 | +if [ -z "$gh_ranges" ]; then |
| 47 | + echo "ERROR: Failed to fetch GitHub IP ranges" |
| 48 | + exit 1 |
| 49 | +fi |
| 50 | + |
| 51 | +if ! echo "$gh_ranges" | jq -e '.web and .api and .git' >/dev/null; then |
| 52 | + echo "ERROR: GitHub API response missing required fields" |
| 53 | + exit 1 |
| 54 | +fi |
| 55 | + |
| 56 | +echo "Processing GitHub IPs..." |
| 57 | +while read -r cidr; do |
| 58 | + if [[ ! "$cidr" =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}/[0-9]{1,2}$ ]]; then |
| 59 | + echo "ERROR: Invalid CIDR range from GitHub meta: $cidr" |
| 60 | + exit 1 |
| 61 | + fi |
| 62 | + echo "Adding GitHub range $cidr" |
| 63 | + ipset add allowed-domains "$cidr" 2>/dev/null || echo " (already exists, skipping)" |
| 64 | +done < <(echo "$gh_ranges" | jq -r '(.web + .api + .git)[]' | aggregate -q) |
| 65 | + |
| 66 | +# Get the script's directory to find the domains file |
| 67 | +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |
| 68 | +DOMAINS_FILE="$SCRIPT_DIR/allowed-domains.txt" |
| 69 | + |
| 70 | +if [ ! -f "$DOMAINS_FILE" ]; then |
| 71 | + echo "ERROR: Domains file not found at $DOMAINS_FILE" |
| 72 | + exit 1 |
| 73 | +fi |
| 74 | + |
| 75 | +# Resolve and add other allowed domains |
| 76 | +while IFS= read -r domain || [ -n "$domain" ]; do |
| 77 | + # Skip empty lines and lines starting with # |
| 78 | + [[ -z "$domain" || "$domain" =~ ^[[:space:]]*# ]] && continue |
| 79 | + echo "Resolving $domain..." |
| 80 | + # First get the DNS response (could be IPs or CNAMEs) |
| 81 | + dns_response=$(dig +short A "$domain") |
| 82 | + |
| 83 | + # Follow CNAMEs and extract only IP addresses |
| 84 | + ips="" |
| 85 | + while read -r record; do |
| 86 | + if [[ "$record" =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then |
| 87 | + # It's already an IP, add it |
| 88 | + ips="$ips$record"$'\n' |
| 89 | + else |
| 90 | + # It's a CNAME, resolve it recursively |
| 91 | + resolved_ips=$(dig +short A "$record" | grep -E '^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$') |
| 92 | + if [ -n "$resolved_ips" ]; then |
| 93 | + ips="$ips$resolved_ips"$'\n' |
| 94 | + fi |
| 95 | + fi |
| 96 | + done < <(echo "$dns_response") |
| 97 | + |
| 98 | + # Remove empty lines and duplicates |
| 99 | + ips=$(echo "$ips" | grep -v '^$' | sort -u) |
| 100 | + |
| 101 | + if [ -z "$ips" ]; then |
| 102 | + echo "ERROR: Failed to resolve $domain to any IP addresses" |
| 103 | + exit 1 |
| 104 | + fi |
| 105 | + |
| 106 | + while read -r ip; do |
| 107 | + echo "Adding $ip for $domain" |
| 108 | + ipset add allowed-domains "$ip" 2>/dev/null || echo " (already exists, skipping)" |
| 109 | + done < <(echo "$ips") |
| 110 | +done < "$DOMAINS_FILE" |
| 111 | + |
| 112 | +# Get host IP from default route |
| 113 | +HOST_IP=$(ip route | grep default | cut -d" " -f3) |
| 114 | +if [ -z "$HOST_IP" ]; then |
| 115 | + echo "ERROR: Failed to detect host IP" |
| 116 | + exit 1 |
| 117 | +fi |
| 118 | + |
| 119 | +HOST_NETWORK=$(echo "$HOST_IP" | sed "s/\.[0-9]*$/.0\/24/") |
| 120 | +echo "Host network detected as: $HOST_NETWORK" |
| 121 | + |
| 122 | +# Set up remaining iptables rules |
| 123 | +iptables -A INPUT -s "$HOST_NETWORK" -j ACCEPT |
| 124 | +iptables -A OUTPUT -d "$HOST_NETWORK" -j ACCEPT |
| 125 | + |
| 126 | +# Set default policies to DROP first |
| 127 | +iptables -P INPUT DROP |
| 128 | +iptables -P FORWARD DROP |
| 129 | +iptables -P OUTPUT DROP |
| 130 | + |
| 131 | +# First allow established connections for already approved traffic |
| 132 | +iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT |
| 133 | +iptables -A OUTPUT -m state --state ESTABLISHED,RELATED -j ACCEPT |
| 134 | + |
| 135 | +# Then allow only specific outbound traffic to allowed domains |
| 136 | +iptables -A OUTPUT -m set --match-set allowed-domains dst -j ACCEPT |
| 137 | + |
| 138 | +echo "Firewall configuration complete" |
| 139 | +echo "Verifying firewall rules..." |
| 140 | +if curl --connect-timeout 5 https://example.com >/dev/null 2>&1; then |
| 141 | + echo "ERROR: Firewall verification failed - was able to reach https://example.com" |
| 142 | + exit 1 |
| 143 | +else |
| 144 | + echo "Firewall verification passed - unable to reach https://example.com as expected" |
| 145 | +fi |
| 146 | + |
| 147 | +# Verify GitHub API access |
| 148 | +if ! curl --connect-timeout 5 https://api.github.com/zen >/dev/null 2>&1; then |
| 149 | + echo "ERROR: Firewall verification failed - unable to reach https://api.github.com" |
| 150 | + exit 1 |
| 151 | +else |
| 152 | + echo "Firewall verification passed - able to reach https://api.github.com as expected" |
| 153 | +fi |
0 commit comments