5
votes

I connected my iPad by Fiddler proxy and try to monitor traffic. But my PC generate too many traffic and I lost iPad traffic in very big list. How I can setup filter: "Show only fiddler proxy traffic"?

4

4 Answers

2
votes

The simplest way to hide all traffic from processes on your machine is to click the icon in the Fiddler status bar that says All Processes and change it to Hide All. This will hide all traffic from recognized processes on your PC, so that only the traffic coming from the IPAD will appear.

0
votes

What worked for me was to turn off Capture and select All Processes at the bottom left. But it happened. However, I must say, I had to play with these settings a bit and to restart Fiddler. At the beginning, the results were not always consistent, and I am wondering if there is a bug where activating/deactivating the capture or selecting a filter does not always work as expected.

0
votes

Change status bar value from All processes to Non-Browser. This will show you only proxy traffic.

0
votes

Go to Rules -> Customize Rules.

Inside the OnBeforeRequest method (on the line below static function OnBeforeRequest(oSession: Session) {), add the following:

// Only show traffic from another device, for example Android.
if (oSession.clientIP == "::ffff:127.0.0.1") {
    oSession.Ignore();
}