Skip to content

Module: Return Ascii Chars

Haoxi Tan edited this page Jan 8, 2020 · 2 revisions

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

Clone this wiki locally