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