Clone
2
Module: Return Ascii Chars
Haoxi Tan edited this page 2020-01-09 09:38:27 +10:00

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