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?
source
share