Telerik Forums
Fiddler Forum
1 answer
90 views

My client said that they are having issues with Outlook 365 via the local Outlook app when Fiddler is also open/running.

 

The client goes to open outlook and it just sits and spins and never opens. But as soon as she closed out of Fiddler, she was able to open email no problem. They have even had to reboot their computer in order to open Outlook. 

 

See attached for how I have their settings set up.

Nick Iliev
Telerik team
 answered on 14 Dec 2023
1 answer
57 views

I need to use client certificate for some requests. In old Fiddler I did this using FiddlerScript using 

    static function OnBeforeRequest(oSession: Session) {

	if (oSession.host.toLowerCase() == "aaa.bbb.com")
	{
		oSession["https-Client-Certificate"] = "C:\certs\aaa.bbb.cer";
	}
    }
Is there any way how to do it in Fiddler Everywhere?

 

Nick Iliev
Telerik team
 answered on 11 Dec 2023
2 answers
36 views

Hi 

Fiddler cannot intercept a request from spotify.com

TLS handshake failed

Niko
Top achievements
Rank 1
Iron
 answered on 08 Dec 2023
1 answer
181 views
How do I capture traffic from a specific program? It seems that the application is bypassing the proxy because the requests aren’t appearing in Fiddler. Is it possible to make the program send requests through the proxy? 
Nick Iliev
Telerik team
 answered on 08 Dec 2023
1 answer
82 views
I am getting the a popup message every 20 times a minute saying:

**it was not possible to connect to the revocation server or a definitive response could not be obtained**

I am using fiddler classic version: 

v5.0.20204.45441 for .NET 4.6.1

We are on a very locked down network, so I am looking for work arounds, not blaming Teleric or Fiddler.
Nick Iliev
Telerik team
 answered on 06 Dec 2023
1 answer
37 views

Hi,

I am trying to pick up HTTP requests from a program but when this program sends http requests, through TCP View I can see that it sends it on my machine's 192.x ip instead of 127.0.0.1 and fiddler is not picking this up. Any clues on how to fix this?

Thanks!

Nick Iliev
Telerik team
 answered on 06 Dec 2023
1 answer
29 views

Hello, I'm trying to output the HTTPVersion in FiddlerApplication.AfterSessionComplete,

but sites corresponding to HTTP/2 always show up as HTTP/1.1.

 

source code:

FiddlerApplication.AfterSessionComplete += delegate (Session session)
            {
               
                string httpVersion = session.oResponse.headers.HTTPVersion;
                Console.WriteLine($"HTTP Version: {httpVersion}");
            };

            CustomRootCert();

            FiddlerCoreStartupSettings startupSettings =
            new FiddlerCoreStartupSettingsBuilder()
             .ListenOnPort(9999)
             .RegisterAsSystemProxy()
             .DecryptSSL()
             .Build();
            
            FiddlerApplication.Startup(startupSettings);
Nick Iliev
Telerik team
 answered on 05 Dec 2023
1 answer
74 views

When I open Fiddler Classic, the Firewall rules no longer work. For example, I have a rule blocking all outbound traffic from Google Chrome. When Fiddler is not opened, the rule works and I am unable to access the internet through Chrome, but once I open Fiddler, the Firewall rule stops working and I can browse the internet normally.

I believe this has something to do with Fiddler connecting me to a proxy which bypasses the Firewall. So I tried unchecking “Act as system proxy on startup” under Options → Connections, but this causes Fiddler not to record any traffic at all. I also tried selecting “No Proxy” under the Gateway tab, but this does not seem to have any effect.

How can I fix this issue? Do I have to configure the Firewall settings to apply to the proxy? I am using Windows 10.

Nick Iliev
Telerik team
 answered on 05 Dec 2023
1 answer
42 views


I'm trying to add a function that enables me to programatically hide certain domains and retain such list as a BindPref.

However the function generates an unexpected error "Expected expression".

 

 

I've ran the function on jsFiddle.net and it works very well in their javascript engine, hence I suspect an issue with FiddlerScript.



class Handlers
{
[...]

static function OnPeekAtRequestHeaders(oSession: Session) {
	if(containsIgnoreDomain(oSession)) oSession["ui-hide"] = "yup";
}

static function ContainsIgnoreDomain(oSession: Session) {
        var ignoreDomains = [ "micosoft.com", "google.com", "googleapis.com", "gstatic.com", "gvt2.com", "gvt3.com"];
	
	const present = ignoreDomains.filter( domain => oSession.url.endsWith(domain) );  //   <<<<=== ERROR HERE 

	if(present.length > 0) return true;
	else return false;
}

[...]
}


Nick Iliev
Telerik team
 answered on 27 Nov 2023
1 answer
55 views
Hi. In the new version of Fiddler everywhere, it is not possible to monitor traffic with an iPhone. Fiddler does not connect to the iphone. It was conveniently used in the earlier version.
Would you please support.
Nick Iliev
Telerik team
 answered on 20 Nov 2023
Narrow your results
Selected tags
Tags
+? more
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Dominik
Top achievements
Rank 1
Giuliano
Top achievements
Rank 1
Dominic
Top achievements
Rank 1
Glendys
Top achievements
Rank 1
NoobMaster
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?