up vote 2 down vote favorite
3
share [g+] share [fb]

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

Could be handy to get see how hacker-proof your site is...

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

Charlse HTTP proxy tool is my favorite. You can manually create HTTP request or edit existing HTTP request. http://www.charlesproxy.com/

The completely free tool is Fiddler which has similar functionalities http://www.fiddlertool.com/fiddler/

Charlse runs on different operating systems, it is on top of java VM. Fiddler runs on windows dot net.

link|improve this answer
1  
+1 for Fiddler. Marvelous tool! – Vilx- Jan 4 '09 at 21:38
1  
+1 for Fiddler, although it runs on .Net so is limited to Windows. Make sure that you get version 2.0; I believe the front page download link takes you to 1.0. – kdgregory Jan 4 '09 at 22:02
feedback

I've found Tamper Data 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.

-Kai

link|improve this answer
feedback

For the Mac I like HTTP Client.

http://ditchnet.org/httpclient/

Woot!

link|improve this answer
feedback

I've always had good luck with Netcat. A very simply command line utility that allows you to send anything you want over TCP/IP. HTTP itself is quite simple, so you can just hand craft it. Example usage:

nc www.mywebsite.com 80
GET / HTTP/1.0
(hit return twice)
link|improve this answer
feedback

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.

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.

Available here

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.