Is there any way to set fiddler to lookup gateway proxy (upstream proxy) from Advanced configuration instead of the common configuration? I have an application that sets multiple proxies for each protocol. So fiddler assumes there is no gateway unless it finds something in the box above.
Also is there any QuickExec command available for changing the Gateway? I'm looking for rapid way to set upstream proxy.
By default, the upstream gateway for each session is inherited from the IE/Windows default proxy setting that was set when Fiddler starts up.
However, on each session it can be overridden using the
X-OverrideGateway
Session Flag.So, to build your own QuickExec action, do this:
Inside Rules > Customize Rules >
Handlers
, addInside
OnBeforeRequest
, addInside the
OnExecAction
method'sswitch
statement, addThen, you can type things like
gw myProxy:1234
to force subsequent requests tomyProxy:1234
or simply typegw
to clear the override.