Capturing traffic while using multiple proxies

1 Answer 132 Views
Fiddler Classic Windows
Ararad
Top achievements
Rank 1
Ararad asked on 27 Jul 2022, 03:22 PM

Hi guys,

I'm using different proxies for each browser, let's say 5 different proxies/IPs.

The question is: How to make the fiddler classic capture the traffic (requests/responses) from all the browsers? It means that it should read the traffic from 5 proxies at the same time.

1 Answer, 1 is accepted

Sort by
1
Accepted
Nick Iliev
Telerik team
answered on 28 Jul 2022, 12:39 PM

Hello Ararad,

 

You could try the other way around - set all browsers to go through the Fiddler proxy and then let Fiddler change the gateway based on custom logic through FiddlerScript. For example, use the OnBeforeRequest event to direct the traffic to a different gateway based on the process (that generates the traffic).

if (!oSession["X-PROCESSINFO"] || !oSession["X-PROCESSINFO"].StartsWith("MyProcessName")) {
    oSession["x-OverrideGateway"] = "gateway:port";
}

 

Regards,
Nick Iliev
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Ararad
Top achievements
Rank 1
commented on 01 Aug 2022, 02:49 PM

This perfectly works for each browser process. It cannot handle normal/private mode, but still - this filled the need. Thank you Nick!
Tags
Fiddler Classic Windows
Asked by
Ararad
Top achievements
Rank 1
Answers by
Nick Iliev
Telerik team
Share this question
or