Tamper GET request parameters with Tamper data in Firefox?

I can change send request parameters using Tamper Data in firefox. When I do post and I get a popup in firefox to change the parameters of the POST request, but in case of a GET request, I get a popup, but there is no way to change the request parameter.

So the question is: is it possible to change the query parameter through Tamper Data / Fiddler? (Yes, I agree, we can change it from the address bar of the browser, but this will be applicable after the first request, but I want to change the data in the very first Get Request. So I want to change the GET request parameter with the Tamer Data / Fiddler data. Maybe is it?)

+6
source share
3 answers

You cannot do this with Tamper-Data. You can use a more advanced stand-alone tool, such as Web Scarab , which allows you to intercept and edit all parts of your web requests.

Using a violinist in conjunction with FiddlerScript also an alternative.

+2
source

You can easily use Fiddler to intervene in any aspect of the request or response. You can do this using FiddlerScript or manually using breakpoints. To change traffic manually using breakpoints, watch this video: http://www.youtube.com/watch?v=8bo5kXMAcV0&list=PLvmaC-XMqeBbw72l2G7FG7CntDTErjbHc

+2
source

You can also use: Live http header addon. Hope this helps.

0
source

Source: https://habr.com/ru/post/944350/


All Articles