-
Notifications
You must be signed in to change notification settings - Fork 884
Description
"Whenever you go to any of Instagram's addresses, be sure to exit through the 'en1' gate!"
#!/bin/bash
================================================
Şenol Abi - Instagram Ubuntu Stealth Routing + Fingerprint
Tek komutla kur: bash <(curl -s https://raw.githubusercontent.com/.../stealth.sh)
================================================
1) Temiz Instagram IP'si (örnek: Google Cloud Frankfurt)
CLEAN_IP="157.240.23.147" # senin temiz IP'n
CLEAN_GW="157.240.23.1" # gateway
INTERFACE="eth0" # sunucunun ana ethernet kartı
2) Routing table oluştur
echo "200 instagram" >> /etc/iproute2/rt_tables
ip route flush table instagram
ip route add default via $CLEAN_GW dev $INTERFACE table instagram
3) Policy routing rule (mark 0x666 = Instagram trafiği)
ip rule del fwmark 666 2>/dev/null
ip rule add fwmark 666 table instagram
4) Instagram'ın tüm bilinen IP blokları + hostname'ler (2021-2022 altın liste)
iptables -t mangle -F OUTPUT
iptables -t mangle -A OUTPUT -d 31.13.64.0/18 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d 157.240.0.0/16 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d 179.60.192.0/22 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d 157.241.0.0/16 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d 129.134.0.0/17 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d 102.132.96.0/20 -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d graph.instagram.com -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d i.instagram.com -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d instagram-p42-shv-01-frc3.fbcdn.net -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d instagram-p42-shv-02-ams4.fbcdn.net -j MARK --set-mark 666
iptables -t mangle -A OUTPUT -d instagram-p42-shv-01-sof1.fbcdn.net -j MARK --set-mark 666
5) iOS 14/15/16 TCP Fingerprint (Meta IDS'yi kandırmak için)
sysctl -w net.ipv4.tcp_window_scaling=1
sysctl -w net.ipv4.tcp_timestamps=1
sysctl -w net.ipv4.tcp_sack=1
sysctl -w net.ipv4.tcp_dsack=1
sysctl -w net.ipv4.tcp_fack=1
sysctl -w net.ipv4.tcp_ecn=0
iptables -t mangle -A OUTPUT -p tcp --tcp-flags SYN SYN -j TCPOPT --set-opt window --window-size 65535
iptables -t mangle -A OUTPUT -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu
iptables -t mangle -A OUTPUT -j TTL --ttl-set 64
6) DF bit ve fragmentation iOS gibi
iptables -t mangle -A OUTPUT -p tcp -j TCPOPT --set-opt nop
iptables -t mangle -A OUTPUT -p tcp --tcp-flags ALL ALL -j TCPOPT --set-opt mss --mss 1420
7) Kalıcı hâle getir (reboot sonrası da çalışsın)
cat > /etc/rc.local <<EOF
#!/bin/bash
sleep 10
bash $0
exit 0
EOF
chmod +x /etc/rc.local
echo "Instagram ultra stealth aktif! Artık tüm trafik temiz IP + iOS fingerprint ile çıkıyor."
echo "Test et: curl -H "User-Agent: Instagram 214.0 iPhone" https://i.instagram.com/api/v1/feed/timeline/"