View/sniff HTTP packets from browser to Web server
-
I need to look at the HTTP packets for GET and POST transmitals to a web server, from a browser (IE, etc), in the case where a User is cliking on the SUBMIT button within a web page that has a Form on it. We can use any browser, if that makes the job easier. Any help would be much appreciated. Thanks, Robert
-
I need to look at the HTTP packets for GET and POST transmitals to a web server, from a browser (IE, etc), in the case where a User is cliking on the SUBMIT button within a web page that has a Form on it. We can use any browser, if that makes the job easier. Any help would be much appreciated. Thanks, Robert
You can use the ethereal the capture the TCP packets http://www.ethereal.com/[^]
-
I need to look at the HTTP packets for GET and POST transmitals to a web server, from a browser (IE, etc), in the case where a User is cliking on the SUBMIT button within a web page that has a Form on it. We can use any browser, if that makes the job easier. Any help would be much appreciated. Thanks, Robert
Fiddler[^] is written by a member of the IE team. It acts as a proxy between the client and server. If you don't want to use a proxy, then you'll have to use some kind of network traffic analyzer. I use Ethereal[^].
Stability. What an interesting concept. -- Chris Maunder
-
You can use the ethereal the capture the TCP packets http://www.ethereal.com/[^]
Thanks :-) Got it working!
-
Fiddler[^] is written by a member of the IE team. It acts as a proxy between the client and server. If you don't want to use a proxy, then you'll have to use some kind of network traffic analyzer. I use Ethereal[^].
Stability. What an interesting concept. -- Chris Maunder
Thank-you. I got it working! :-)