Telerik Forums
Fiddler Forum
3 answers
6 views

When accessing the nature website via fiddler, if you check Decrypt HTTPS traffic, error 403 forbidden will appear, unchecked resolve https can be accessed normally. As you can see in the picture below:

chen
Top achievements
Rank 2
Bronze
Iron
Iron
 answered on 17 May 2024
1 answer
5 views
Is there currently a way to get the Filter back?

When I try to enable the System Capture it says: Capturing not enabled, please try again! 
I removed the Filter manually, but now I cannot add it back, I won't get asked. I checked if there is some local Storage, but couldn't find any.
Nick Iliev
Telerik team
 answered on 17 May 2024
2 answers
23 views

Hi everyone,

I have an .net framework 4.7.2 C# WPF app running which also has a little .net 3.5 app inside it.

This is running 1500 computers in australia and has been for 18 months.

Today we started getting reports of computers having 'crashes'

Debugging has provided this info:

section: created rest options System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The request was aborted: Could not create SSL/TLS secure channel.

What we have now found out is that it is Windows 7 clients all being affected.

Importantly:

Postman and google chrome can access the api

JUST the .net seems ot be having issues.

After seeing this I have downlaoded fiddler (for first time) and we are seeing a handshake issue:

fiddler.network.https> HTTPS handshake to www.mydomain.com.au (for #710) failed. System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. < The message received was unexpected or badly formatted

Win32 (SChannel) Native Error Code: 0x80090326


But then when i booted fiddler im also seeing the same issue:

[Fiddler] The connection to 'api.getfiddler.com' failed.  <br />System.Security.SecurityException Failed to negotiate HTTPS connection with server.fiddler.network.https&gt; HTTPS handshake to api.getfiddler.com (for #1) failed. System.Security.Authentication.AuthenticationException A call to SSPI failed, see inner exception. &lt; The message received was unexpected or badly formatted

Win32 (SChannel) Native Error Code: 0x80090326                                       

 

 

So maybe the fiddler API is in fact having the same connection issue as I do, but maybe thats not really going to be noticed because its an update checker for their API but mine is my whole app??

 

Any ideas would be appreciated.

 

Glenn
Top achievements
Rank 1
Iron
 answered on 15 May 2024
3 answers
10 views

hi there

on windows 2022 server when i close fiddler or stop capture traffic

running apps can nor connect tls 1.2

i always get errors for service connecting until start capturing.

What should I do to make the system work properly when the program is closed?

 

Thaks for your help :)

alex
Top achievements
Rank 1
Iron
 answered on 14 May 2024
1 answer
11 views

I just need to sync the last decent, tolerable version of Evernote one more time: https://www.reddit.com/r/Evernote/comments/1cico6e/solutions_for_syncing_the_legacy_v6_client/

How can I do this?  I can't find a way to change the user-agent globally for running programs under WINE.  It's supposedly possible under FIDDLER but I'm new. :(  Help?  I searched the documentation and program, but I must not be good at this because I couldn't figure it out.

Nick Iliev
Telerik team
 answered on 13 May 2024
1 answer
11 views

This happens when running Fiddler Everywhere for the first time, I've tried reinstalling it multiple times, running as Administrator and nothing.

 

I'm running on a Windows 11 pro, it's my personal computer there are no network blockers, I can ping the endpoints mentioned in this answer: https://www.telerik.com/forums/unable-to-accept-the-eula-please-try-again-later-if-the-problem-persists-please-contact-support

 

Nick Iliev
Telerik team
 answered on 08 May 2024
1 answer
17 views
我一直在寻找Fiddler Everywhere 5.4.0版本中的自动回复功能,但一直没有找到。请问是取消了还是去哪里了?
Nick Iliev
Telerik team
 answered on 06 May 2024
1 answer
21 views

I try many library, last library I try was global-tunnel-ng, but still have no result. Usually I use fiddler to trace various request, my Fiddler listen port 8888, therefore I try to use
  var globalTunnel = require('global-tunnel-ng');
  globalTunnel.initialize({
    host: 'ipv4.fiddler',
    port: 8888,
  });

  // my various request to Google, to AWS and more

  globalTunnel.end()

I expected to see all request on Fiddler, but there are nothing any request on Fiddler panel. 'localhost' and '127.0.0.1' as ProxyURL also don't working. What I doing wrong?
Nick Iliev
Telerik team
 answered on 30 Apr 2024
1 answer
15 views

I try many library, last library I try was global-tunnel-ng, but still have no result. Usually I use fiddler to trace various request, my Fiddler listen port 8888, therefore I try to use

 

  var globalTunnel = require('global-tunnel-ng');
  globalTunnel.initialize({
    host: 'ipv4.fiddler',
    port: 8888,
  });

  // my various request to Google, to AWS and more

  globalTunnel.end()

I expected to see all request on Fiddler, but there are nothing any request on Fiddler panel. 'localhost' and '127.0.0.1' as ProxyURL also don't working. What I doing wrong?

 

Nick Iliev
Telerik team
 answered on 30 Apr 2024
1 answer
13 views

Hi

I am using Fiddler Classic v.5.0.20242.10753 for .NET 4.6.2 64-bit on Windows Server 2012R2 (don't ask!)

I am also using FiddlerScript in C# mode.  My use case is that I am trying to create a temporary fix for a legacy service that is responding with incorrectly derived values in an XML payload.  I can force all clients of this service to access it via Fiddler as a proxy, and I wanted to use FiddlerScript to modify the response to correct some of the data, as it can be derived from other parts of the response.

I did a very very rough PoC by catching the specific calls in OnBeforeResponse and making an arbitrary change.  What I have then tried to do is use the System.XML XmlDocument object, pass it the response body when instantiating, and working from there.

THE PROBLEM:  I have added "using System.XML;" to the script.  I have also added "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\System.XML.dll" to the References field in Fiddler under Tools -> Options -> Scripting and restarted Fiddler Classic.  However, when saving the script, I get an error "The type or namespace name 'XML' does not exist in the namespace 'System' (are you missing an assembly reference?)"

I have tried just about everything I can think of to make that reference:
 - adding directly to the dll in the Windows dir
 - copying the dll(s) to the same DIR as the Fiddler.exe (as suggested in your docs)
 - adding the XML dlls to the GAC

Nothing I do seems to solve this problem.  I thought it might be a .NET version issue, but I have 4.6.2 installed.

How do I properly reference other .NET assemblies that I want to use in script? 

Thanks,
Steve.

Nick Iliev
Telerik team
 answered on 29 Apr 2024
Narrow your results
Selected tags
Tags
+? more
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Mark
Top achievements
Rank 1
Yurii
Top achievements
Rank 1
Leland
Top achievements
Rank 2
Iron
Iron
Iron
Hon
Top achievements
Rank 1
Iron
Deltaohm
Top achievements
Rank 3
Bronze
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?