Autorun Rule Engine from @antisnatchor with love (alpha version).
This commit is contained in:
@@ -9,7 +9,8 @@ beef.execute(function() {
|
||||
var str = '';
|
||||
for (var i=32; i<=127;i++) str += String.fromCharCode(i);
|
||||
|
||||
beef.net.send("<%= @command_url %>", <%= @command_id %>, str);
|
||||
|
||||
beef.net.send("<%= @command_url %>", <%= @command_id %>, str, beef.are.status_success());
|
||||
//return [beef.are.status_success(), str];
|
||||
test_return_ascii_chars_mod_output = [beef.are.status_success(), str];
|
||||
});
|
||||
|
||||
|
||||
@@ -13,7 +13,8 @@ beef.execute(function() {
|
||||
for (var i = 0; i < iterations; i++) {
|
||||
str += repeat_value;
|
||||
}
|
||||
beef.net.send("<%= @command_url %>", <%= @command_id %>, str);
|
||||
|
||||
beef.net.send("<%= @command_url %>", <%= @command_id %>, str, beef.are.status_success());
|
||||
//return [beef.are.status_success(), str];
|
||||
test_return_long_string_mod_output = [beef.are.status_unknown(), str];
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user