Monitoring, simulating, creating HTTP packets - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:52:18Zhttp://stackoverflow.com/feeds/question/411669http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/411669/monitoring-simulating-creating-http-packets2Monitoring, simulating, creating HTTP packetsIceHeat2009-01-04T21:09:04Z2009-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#4117016Answer by codemeit for Monitoring, simulating, creating HTTP packetscodemeit2009-01-04T21:26:17Z2009-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#4117123Answer by Kaitsu for Monitoring, simulating, creating HTTP packetsKaitsu2009-01-04T21:31:48Z2009-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#4117131Answer by Genericrich for Monitoring, simulating, creating HTTP packetsGenericrich2009-01-04T21:32:02Z2009-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#4117191Answer by Parand for Monitoring, simulating, creating HTTP packetsParand2009-01-04T21:35:51Z2009-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#4118400Answer by redsquare for Monitoring, simulating, creating HTTP packetsredsquare2009-01-04T22:51:30Z2009-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>