mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-03-12 04:35:49 -07:00
- Added partial OS and Browser detection through clients user-agents - Improved jskeylogger plugin (now detects input field names) - Fixed bug where jskeylogger sent invalid charCodes on Android devices - Cleaned search engine query parsing code in ServerConnection.py - Updated setup.sh with new libs
13 lines
408 B
Bash
Executable File
13 lines
408 B
Bash
Executable File
#!/usr/bin/env bash
|
|
if [[ $EUID -ne 0 ]]; then
|
|
echo "You must be root" 2>&1
|
|
exit 1
|
|
fi
|
|
|
|
apt-get install python-scapy python-dns python-pip msgpack-python python-nfqueue python-imaging -y
|
|
apt-get install python-twisted-web python-dnspython python-requests python-configobj python-pefile -y
|
|
pip install pyyaml ua-parser user-agents
|
|
git submodule init
|
|
git submodule update
|
|
cd libs/bdfactory/ && ./install.sh
|