Module: Return Ascii Chars - h4sh5/beef GitHub Wiki

Summary

  • Objective: Return the set of ascii chars

  • Authors: wade

  • Browsers: All

  • Code

Internal Working

just sends back all ascii chars within printable range


var str = '';
for (var i=32; i<=127;i++) str += String.fromCharCode(i);

beef.net.send("<%= @command_url %>", <%= @command_id %>, str, beef.are.status_success());

Feedback