Monitoring, simulating, creating HTTP packets - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T05:52:18Z http://stackoverflow.com/feeds/question/411669 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets 2 Monitoring, simulating, creating HTTP packets IceHeat 2009-01-04T21:09:04Z 2009-01-05T17:30:16Z <p>I did some HTTP monitoring with WireShark. Are there more tools like this that allow you to create your own HTTP messsages? Telnet comes to mind</p> <p>Could be handy to get see how hacker-proof your site is...</p> http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets/411701#411701 6 Answer by codemeit for Monitoring, simulating, creating HTTP packets codemeit 2009-01-04T21:26:17Z 2009-01-04T23:36:54Z <p>Charlse HTTP proxy tool is my favorite. You can manually create HTTP request or edit existing HTTP request. <a href="http://www.charlesproxy.com/" rel="nofollow">http://www.charlesproxy.com/</a></p> <p>The completely free tool is Fiddler which has similar functionalities <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">http://www.fiddlertool.com/fiddler/</a></p> <p>Charlse runs on different operating systems, it is on top of java VM. Fiddler runs on windows dot net.</p> http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets/411712#411712 3 Answer by Kaitsu for Monitoring, simulating, creating HTTP packets Kaitsu 2009-01-04T21:31:48Z 2009-01-05T17:30:16Z <p>I've found <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">Tamper Data</a> quite useful Firefox plugin to fiddle with HTTP headers and parameters. This is very useful if/when you want to hack your (or someone elses :) ) site.</p> <p>-Kai</p> http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets/411713#411713 1 Answer by Genericrich for Monitoring, simulating, creating HTTP packets Genericrich 2009-01-04T21:32:02Z 2009-01-04T21:32:02Z <p>For the Mac I like HTTP Client.</p> <p><a href="http://ditchnet.org/httpclient/" rel="nofollow">http://ditchnet.org/httpclient/</a></p> <p>Woot!</p> http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets/411719#411719 1 Answer by Parand for Monitoring, simulating, creating HTTP packets Parand 2009-01-04T21:35:51Z 2009-01-04T21:35:51Z <p>I've always had good luck with <a href="http://en.wikipedia.org/wiki/Netcat" rel="nofollow">Netcat</a>. A very simply command line utility that allows you to send anything you want over TCP/IP. <a href="http://en.wikipedia.org/wiki/HyperText_Transfer_Protocol" rel="nofollow">HTTP</a> itself is quite simple, so you can just hand craft it. Example usage:</p> <pre><code>nc www.mywebsite.com 80 GET / HTTP/1.0 (hit return twice) </code></pre> http://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets/411840#411840 0 Answer by redsquare for Monitoring, simulating, creating HTTP packets redsquare 2009-01-04T22:51:30Z 2009-01-04T22:51:30Z <p>If you need a more powefull application then look at WebScarab. Runs on java and packed full of features mainly to monitor but is more of an advanced security tool.</p> <blockquote> <p>WebScarab is designed to be a tool for anyone who needs to expose the workings of an HTTP(S) based application, whether to allow the developer to debug otherwise difficult problems, or to allow a security specialist to identify vulnerabilities in the way that the application has been designed or implemented.</p> </blockquote> <p>Available <a href="http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project" rel="nofollow">here</a></p>