- 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:
byt3bl33d3r 2014-12-21 17:33:56 +01:00
parent 4ae50e6e0c
commit f359ee7cdd
7 changed files with 211 additions and 121 deletions

View file

@ -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;