Hi,
I have a HTTP POST string that I am running from a client cpp program against a server running Apache. Following is the POST string that would get fired from the clients:
"POST %s HTTP/1.0\r\n"
"Host: %s\r\n"
"Content-type: multipart/form-data\r\n"
"Content-length: %d\r\n\r\n"
"Content-Disposition: %s; filename: %s\n"
It would be nice if someone could help me out to understand how could I encrypt the data that sits in the Content-Disposition:
field.
Also, I noticed that even if I put something irrelevant to the right of the POST string, like: "POST %s HTTPGarbage/1.0\r\n"
, the transfer still happens, it would be grand if I am informed about this behavior as well.
Thanks,
Sayan