I am very new to VB . NET but have still managed to code small projects with regular POST and GET webrequests. I know a decent amount already.
I am trying to make a tool for a site that uses the multipart POST request and am failing to figure it out.
Here is some of the data extracted from the headers of the requests...
I can get the "site_key" value using GET and regex but dont know how to compile a multipart POST request.
I am sure a lot of you guys know how to do this so a little explanation and sample code would be very helpful for me.
Thanks in advanced.
I am trying to make a tool for a site that uses the multipart POST request and am failing to figure it out.
Here is some of the data extracted from the headers of the requests...
Code:
Content-Type: multipart/form-data; boundary=---------------------------134911937220404Content-Length: 817
-----------------------------134911937220404
Content-Disposition: form-data; name="site_key"
kNtXqixV
-----------------------------134911937220404
Content-Disposition: form-data; name="submit_hidden"
submit_hidden
-----------------------------134911937220404
Content-Disposition: form-data; name="site_code"
this is the paster
-----------------------------134911937220404
Content-Disposition: form-data; name="site_format"
1
I can get the "site_key" value using GET and regex but dont know how to compile a multipart POST request.
I am sure a lot of you guys know how to do this so a little explanation and sample code would be very helpful for me.
Thanks in advanced.