views:

479

answers:

7

I am looking for either a FireFox extension, or a similar program, that allows you to craft GET and POST requests. The user would put in a form action, and as many form key/value pairs as desired. It would also send any cookie information (or send the current cookies from any domain the user chooses.) The Web Developer add-on is almost what I'm looking for; It let's you quickly see the form keys, but it doesn't let you change them or add new ones (which leads to a lot of painful JavaScript in the address bar...)

+2  A: 

You may want to check out the Tamper Data extension which allows you to easily intercept and manipulate the request parameters among other features.

David Schlosnagle
A: 

If you've got Greasemonkey installed you might want to try the XSS Assistant user script: http://www.whiteacid.org/greasemonkey/#xss_assistant

Ian Oxley
A: 

The DOM Inspector will let you add/edit/remove inputs - copying existing ones is the easiest way of adding new ones. I highly recommend getting Inspect This as well.

Cebjyre
+5  A: 

If you're a windows user, use Fiddler. It is invaluable for looking at the raw Http requests and responses. It also has the ability to create requests with the request builder and it has an auto responder also, so you can intercept requests. It even lets you inspect HTTPS traffic and it has a built in event scripting engine, where you can create your own rules.

Dale Ragan
+3  A: 
dlamblin
A: 

Look for a extension called Poster.

chs
A: 

Poster looks nice and complete. For reference, I will add UrlParams to the list, but looks like Poster is better.

PhiLho