Module: Detect Toolbars

Added a module to detect browser toolbars by checking the User-Agent
and the DOM
This commit is contained in:
gcatt
2013-01-31 09:20:32 +01:00
parent 9c6802cd8f
commit daadf59782
4 changed files with 97 additions and 1 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
#
class Detect_toolbars < BeEF::Core::Command
def post_execute
content = {}
content['toolbars'] = @datastore['toolbars']
save content
end
end