I'm evaluating Fiddler Everywhere, and trying troubleshoot a java application.
Initially Fiddler shows a warning that it cant decrypt HTTPS, so I install the root certificate into Arch and trust it, set Fiddler to use system proxy, and then set up the application to point to Fiddlers proxy.
The warning in Fiddler then disappears, so it gives the impression I've done everything right
At this point it can show HTTPS connections (although they are shown as HTTP, and METHOD is always CONNECT, rather than the GET I was expecting to see).
It's also then able to show HTTP(S) headers, but never the actual decrypted response or request body
Any help appreciated thanks



Hello, I am IT for our compnay. We have a developer who is using Fiddler on a macOS Ventura with Temp admin rights. The rights need to be engaged and only last for 60 minutes.
The developer says that Fiddler requires full admin all the time for Fiddler to adjust system proxy settings at startup.
The developer says that the mac has lost all internet connectivity because Fiddler does not have access to manage proxy settings at startup. Is this true?
Please advise. Notes from developer below
---
Subject: Mac lost internet connection with Fiddler
Hi Russell, a similar situation happened again. Steps: - run "Grant admin privileges 60 min" - run "Fiddler Everywhere" - change system proxy settings
Then, after about 5-7 minutes, i got the message "Grant admin privileges 60 minutes" has expired.
I can't get "Grant admin privileges for 60 minutes" in self service. I can't restore system proxy settings without administrator.
For now i have an internet connection through Chrome and i'm logged in. Please advice on system recovery
--
Subject: Mac lost internet connection with Fiddler
Hi R,
The software we have used was Fiddler
https://www.telerik.com/fiddler
It has an option to “Act as system proxy on startup”.
So when Fiddler is launched – it requires to enter admin’s password to modify global system proxy settings. Also when you finish work and close it – once again admin’s password is required to remove global proxy settings.
Regards,
R

Okay, so i'm not sure if this is in the right spot or not but here it goes.
I am using Fiddler Core in my C# program. In my program; I have several checkboxes and each checkbox sets utilreplaceinresponse; while this is all good; After the session is complete; I need to have Fiddler Block that same url from reloading unless the program is closed or cache is cleared. How can I achieve this?


I'm trying to output information to the log, I do " Console.Write("22s");" . After looking at the Log, I do not find this text there. How to correctly output it to Log?
if (oSession.url.Contains("google.com")) {
Console.Out.Write("22s");
}
