Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fiddler no capture on startup

Tags:

fiddler

How can i make fiddler not automatically start capturing traffic on startup?

Thanks

like image 300
James Avatar asked Dec 07 '10 11:12

James


People also ask

How do I enable capture in Fiddler?

In Fiddler, go to Tools > Fiddler Options > HTTPS. Select Capture HTTPS CONNECTs and Decrypt HTTPS traffic. Go to File > Capture Traffic or press F12 to turn off capturing.

Why is Fiddler not capturing traffic?

Sometimes when you are trying to capture browser traffic for debugging, Fiddler does not capture the same. One of the options to try is to make sure that the “Use Filters” checkbox is unchecked in the “Filters” tab in Fiddler. You can also troubleshoot filters to see which filters are hiding your traffic.

Does Fiddler only capture browser traffic?

Fiddler Everywhere allows you to capture, inspect, monitor and replay both HTTP and HTTPS network traffic from any browser and any app.


1 Answers

Use the command line argument:

fiddler.exe -noattach

or, click Tools > Options… > Connections and untick "Act as system proxy on startup" if you never want Fiddler to start attached.

like image 142
EricLaw Avatar answered Sep 22 '22 04:09

EricLaw