Get Protocol Handlers module description and format updated

git-svn-id: https://beef.googlecode.com/svn/trunk@1413 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-11-06 22:47:38 +00:00
parent e957a1025c
commit 0840e024de
2 changed files with 4 additions and 3 deletions

View File

@@ -18,8 +18,9 @@ beef:
detect_protocol_handlers:
enable: true
category: "Host"
name: "Detect Protocol Handlers"
description: "This module attempts to identify protocol handlers present on the zombie host.<br /><br />Only Internet Explorer and Firefox are supported.<br /><br />Firefox users are prompted to launch the application for which the protocol handler is responsible.<br /><br />Firefox users are warned when there is no application assigned to a protocol handler.<br /><br />The possible return values are: unknown, exists, does not exist"
name: "Get Protocol Handlers"
description: "This module attempts to identify protocol handlers present on the hooked browser."
notes: "Only Internet Explorer and Firefox are supported.<br /><br />Firefox users are prompted to launch the application for which the protocol handler is responsible.<br /><br />Firefox users are warned when there is no application assigned to a protocol handler.<br /><br /><br /><br />The possible return values are: unknown, exists, does not exist"
authors: ["bcoles"]
target:
working: ["IE"]

View File

@@ -21,7 +21,7 @@ class Detect_protocol_handlers < BeEF::Core::Command
def self.options
return [
{ 'ui_label'=>'Link Protocol(s)', 'name'=>'handler_protocol', 'description' => 'Comma separated list of protocol handlers', 'value'=>'http, https, ftp, file, mailto, news, feed, ldap', 'width'=>'200px' },
{ 'ui_label'=>'Link Address', 'name'=>'handler_addr', 'description' => 'Handler Address - usually an IP address or domain name. The user will see this.', 'value'=>'Hello-From-BeEF', 'width'=>'200px' },
{ 'ui_label'=>'Link Address', 'name'=>'handler_addr', 'description' => 'Handler Address - usually an IP address or domain name. The user will see this.', 'value'=>'BeEF', 'width'=>'200px' },
]
end