This repository has been archived by the owner on Aug 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Installation
byt3bl33d3r edited this page Aug 22, 2015
·
17 revisions
#Installation MITMf relies on a LOT of external libraries therefore it is highly recommended you use virtualenvs to install the framework, this avoids permission issues and conflicts with your system site packages (especially on Kali Linux).
Before starting the installation process:
- On Debian derivatives (e.g Ubuntu, Kali Linux etc...)
apt-get install python-dev python-setuptools libpcap0.8-dev libnetfilter-queue-dev
#Installing MITMf
- Install virtualenvwrapper:
pip install virtualenvwrapper
- Edit your
.bashrc
or.zshrc
file to source the virtualenvwrapper.sh script:
source /usr/bin/virtualenvwrapper.sh
- Restart your terminal or run:
source /usr/bin/virtualenvwrapper.sh
- Create your virtualenv:
mkvirtualenv MITMf -p /usr/bin/python2.7
- Clone the MITMf repository:
git clone https://github.com/byt3bl33d3r/MITMf
- cd into the directory, initialize and clone the repos submodules:
cd MITMf && git submodule init && git submodule update --recursive
- Install the dependencies:
pip install install -r requirements.txt
- You're ready to rock!
python mitmf.py --help