June 2017
Intermediate to advanced
338 pages
8h 28m
English
SSLsplit follows a similar approach; first you'll need to ensure IP forwarding is enabled. It is common to use more iptables entries to pull in a greater number of ports, provide NAT, and use the typical remapping ports of 80, 8080, 443, and 8443:
iptables -t nat -Fiptables -t nat -A PREROUTING -p tcp –dport 80 -j REDIRECT –to-ports 8080iptables -t nat -A PREROUTING -p tcp –dport 443 -j REDIRECT –to-ports 8443iptables -I INPUT -p tcp -m state –state NEW -m tcp –dport 80 -j ACCEPTiptables -I INPUT -p tcp -m state –state NEW -m tcp –dport 443 -j ACCEPTiptables -I INPUT -p tcp -m state –state NEW -m tcp –dport 8443 -j ACCEPTiptables -I INPUT -p tcp -m state –state NEW -m tcp –dport 8080 -j ACCEPTservice iptables save
We can now kick ...
Read now
Unlock full access