Tell me more ×
Server Fault is a question and answer site for professional system and network administrators. It's 100% free, no registration required.

How can i redirect my own connections to sslstrip port?, the usual iptables command:

sudo iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10000

doesn't work, any help? And these two iptables commands also don't work:

sudo iptables -t nat -A PREROUTING -p tcp --destination-port 80 -j REDIRECT --to-port 10001
sudo iptables -t nat -A OUTPUT -p tcp --dport 10001 -j REDIRECT --to-ports 80
share|improve this question

migrated from security.stackexchange.com Feb 15 at 13:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.