mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-08-14 02:37:06 -07:00
- Updated FilePwn plugin with BDFactory v0.2 + license
- 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
This commit is contained in:
parent
a4e8869fc6
commit
4ae50e6e0c
8 changed files with 503 additions and 143 deletions
10
mitmf.py
10
mitmf.py
|
@ -9,6 +9,16 @@ from libs.sergioproxy.ProxyPlugins import ProxyPlugins
|
|||
import sys, logging, traceback, string, os
|
||||
import argparse
|
||||
|
||||
try:
|
||||
import user_agents
|
||||
except:
|
||||
sys.exit("[-] user_agents library not installed!")
|
||||
|
||||
try:
|
||||
import configobj
|
||||
except:
|
||||
sys.exit("[-] configobj library not installed!")
|
||||
|
||||
from plugins import *
|
||||
plugin_classes = plugin.Plugin.__subclasses__()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue