Tamper with the first line of the URL request, in Firefox

I want to change the first HTTP header line of my request by changing the method and / or URL.

Tamperdata's (excellent) firefox plugin allows the developer to change the request headers, but not the URL itself. This last part is what I want to do.

So something like ...

GET http://foo.com/?foo=foo HTTP/1.1

... can be...

GET http://bar.com/?bar=bar HTTP/1.1

For context, I need to intervene (correct) an erroneous request from Flash to find out if the error can be fixed by setting the URL.

Any ideas? It looks like it might be required at the proxy level. In that case, suggestions?

+5
source share
3 answers

Charles Proxy () / Fiddler2 ( Windows) - - , .

-, Apache, , URL- , HTTP.

+1
+1

HTTP- , Tamperdata , .

However, if you need a little control over these things, it will be much better for you to simulate an entire browser session with a utility such as curl

Curl: http://curl.haxx.se/

0
source

All Articles