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

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...)

link|improve this question

71% accept rate
feedback

8 Answers

up vote 4 down vote accepted

Actually I think Poster is what you're looking for.

A Screen shot of an older Poster version

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
It's horrible. It's active for all tabs as soon as you enable it so unless you close everything but the page you want to mess with you'll really have some fun... – ThiefMaster Jan 26 '11 at 7:52
feedback

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

link|improve this answer
feedback

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.

link|improve this answer
feedback

Look for a extension called Poster.

link|improve this answer
feedback

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

link|improve this answer
feedback

I think tamper data would do the trick....live http headers addon would also do the same.

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.