Hey,
I creating a UI that has an input box to set a filter. It is then disabled and traffic should be filtered based on it. Along with filtering, any traffic that matches the filter text has a parameter added.
I think this should work in principle, but practice it is usually not working. It sometimes works and sometimes doesn't. Am I doing something wrong?
public void AutoTamperRequestBefore(Session oSession){ if (null == View || View.TextBoxFilter.Enabled) return; if (oSession.fullUrl.Contains(View.TextBoxFilter.Text)) { oSession.fullUrl += "&debug=1"; } else { oSession.Ignore(); }}I am struggling with a Windows 10 Pro version 1709 machine. When I am connecting to my ADFS form IE11 and I start capturing with fiddler, it will error.
I reset the certificate, I disabled proxy in the options and I also tried disabling WIA. When I access from Chrome, it works fine but with IE11, it does not matter what I do, it wont work.
As a test, I created another virtual machine with same characteristics, and it works just fine. The only thing I did different is that on the machine that is not working, I did not run IE setup, on the other one that works, I did it.
I've noticed very recently that SNMP Service on Windows 10 seems to run constantly on my Windows 10 PC System. The Task Manager shows it consuming 15-20% of CPU resources on a regular basis. I want to kill the service but something on my system is probably dependent on it.
Is it Fiddler or should I look elsewhere?
Thanks for reading!

Hello,
how to configuration fiddler for capture all traffic between my APP and SQL server?? such as all queries, transactions, connections, etc.
Thanks

Hello, I have downloaded Fiddler for Mac from this link: https://www.telerik.com/download/fiddler and have followed the installation instructions regarding mono and placing fiddler.exe in a writable directory. When running "mono fiddler.exe" from my terminal, Fiddler starts up. However, it is not automatically capturing web traffic like I am used to it doing on Windows.
Is there some other step that I need to perform on Mac for it to start capturing web traffic?
- John