From 0840e024deb5f59fde1229727e4c4f1503c6337a Mon Sep 17 00:00:00 2001 From: "wade@bindshell.net" Date: Sun, 6 Nov 2011 22:47:38 +0000 Subject: [PATCH] Get Protocol Handlers module description and format updated git-svn-id: https://beef.googlecode.com/svn/trunk@1413 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9 --- modules/host/detect_protocol_handlers/config.yaml | 5 +++-- modules/host/detect_protocol_handlers/module.rb | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/host/detect_protocol_handlers/config.yaml b/modules/host/detect_protocol_handlers/config.yaml index ec7fcaf85..081923ab3 100644 --- a/modules/host/detect_protocol_handlers/config.yaml +++ b/modules/host/detect_protocol_handlers/config.yaml @@ -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.

Only Internet Explorer and Firefox are supported.

Firefox users are prompted to launch the application for which the protocol handler is responsible.

Firefox users are warned when there is no application assigned to a protocol handler.

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.

Firefox users are prompted to launch the application for which the protocol handler is responsible.

Firefox users are warned when there is no application assigned to a protocol handler.



The possible return values are: unknown, exists, does not exist" authors: ["bcoles"] target: working: ["IE"] diff --git a/modules/host/detect_protocol_handlers/module.rb b/modules/host/detect_protocol_handlers/module.rb index 2447e87e5..a46293ec2 100644 --- a/modules/host/detect_protocol_handlers/module.rb +++ b/modules/host/detect_protocol_handlers/module.rb @@ -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