Detection added for the Foxit Reader plugin, fixes #829
This commit is contained in:
14
modules/browser/detect_foxit/command.js
Normal file
14
modules/browser/detect_foxit/command.js
Normal 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.hasFoxit() )? "Yes" : "No";
|
||||
|
||||
beef.net.send("<%= @command_url %>", <%= @command_id %>, "foxit="+result);
|
||||
|
||||
});
|
||||
|
||||
15
modules/browser/detect_foxit/config.yaml
Normal file
15
modules/browser/detect_foxit/config.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
#
|
||||
# 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:
|
||||
module:
|
||||
detect_foxit:
|
||||
enable: true
|
||||
category: "Browser"
|
||||
name: "Detect Foxit Reader"
|
||||
description: "This module will check if the browser has Foxit Reader Plugin."
|
||||
authors: ["javuto"]
|
||||
target:
|
||||
working: ["All"]
|
||||
14
modules/browser/detect_foxit/module.rb
Normal file
14
modules/browser/detect_foxit/module.rb
Normal 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
|
||||
#
|
||||
class Detect_foxit < BeEF::Core::Command
|
||||
|
||||
def post_execute
|
||||
content = {}
|
||||
content['foxit'] = @datastore['foxit']
|
||||
save content
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user