Search:

Type: Posts; User: Dhruv

Search: Search took 0.00 seconds.

  1. Thread: Sslstrip issues

    by Dhruv
    Replies
    2
    Views
    7,607

    I am also facing a problem with sslstrip. i...

    I am also facing a problem with sslstrip. i followed the following steps:
    iptables -t nat -A PREROUTING --dport 80 -j REDIRECT --to-port 8080

    checked it with:
    iptables -t nat -L PREROUTING
    ...
  2. Replies
    19
    Views
    70,396

    it may be possible that the port 8080 isn't...

    it may be possible that the port 8080 isn't accepting the traffic. You can make it accept by using the following command:
    iptables -I INPUT -p tcp --dport 8080 -j ACCEPT.

    After this, check if...
Results 1 to 2 of 3