ARP (Address Resolution Protocol) Spoofing
ARP is used to find another computer’s MAC address based on its IP address.
Basic Flow
- Check Interface and Gateway IP Address
- Scan the Network to Find Target IP
- Enable IP Forwarding
# Allow all forwading in the LAN
# -A: append rules
# -i: interface
# -j: jump
iptables -A FORWARD -i eth0 -j ACCEPT