mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-15 01:23:54 -07:00
- Revamped Javapwn plugin with new detection and exploitation algo
- Added whitelist/blacklist ip options to the inject plugin - Revamped Beefautorun plugin, with new injection algo - Metasploit and BeEF options are now a config file (mitmf.cfg)
This commit is contained in:
parent
4ae50e6e0c
commit
f359ee7cdd
7 changed files with 211 additions and 121 deletions
|
@ -17,9 +17,9 @@ class BrowserProfiler(Inject, Plugin):
|
|||
self.dic_output = {} # so other plugins can access the results
|
||||
print "[*] Browser Profiler online"
|
||||
|
||||
def post2dict(self, string): #converts the ajax post to a dic
|
||||
def post2dict(self, post): #converts the ajax post to a dic
|
||||
dict = {}
|
||||
for line in string.split('&'):
|
||||
for line in post.split('&'):
|
||||
t = line.split('=')
|
||||
dict[t[0]] = t[1]
|
||||
return dict
|
||||
|
@ -69,8 +69,6 @@ function make_xhr(){
|
|||
}
|
||||
|
||||
var data = [];
|
||||
userAgent = navigator.userAgent;
|
||||
data.push('user_agent=' + userAgent);
|
||||
|
||||
var PD = PluginDetect;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue