Telerik Forums
Fiddler Forum
1 answer
12 views
I'm having this issue where fiddler will only capture traffic coming from 127.0.0.1:8888, any other traffic is CONNECT, I've tried everything to get it to capture normal.
Nick Iliev
Telerik team
 answered on 15 Apr 2024
0 answers
10 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
 asked on 11 Apr 2024
1 answer
14 views

1) Fiddler didn't hint for most top-level user class name anymore. For example, the following code:

  • If I type code at **, it'll hint all system class without Xyz1 but it shows Xyz2.
  • If I type "Xyz1." then it hint "Xyz3" so it seems to see fields/methods inside properly.

I use Fiddler in another PC (PC2) which report the exact same version (and editor's version), it hints my class properly.
*PC2 that works well has a bit lower WinNT part "WinNT 10.0.18363.0"

class Xyz1 { //Try both public, class
public static class Xyz3 {

}
}
class Handlers
{
static class Xyz2 {

}
public static function xx2(){
**
}
}

The scenario:

"Before this", I think Fiddler hint it in current PC (PC1) too. But it's abruptly missing so I try typing the new class. It hints the new class but not for the class I'll use. So I was dumbfounded and reset the script (delete the file) and retest. Because I know some pattern of code may break Fiddler format. Then "Handlers" is not in the list so I'm sure it's not about the format. I want to confirm that it normally hint top-level class name so I check it in my PC2, and it did. Then I completely uninstall-reinstall Fiddler in PC1. It fails it list any user class. I also try to swap the script to test between PC1 and PC2. PC1 always not work and PC2 always work. *I did not try to reinstall on PC2 though because it's heavily used. But it has the exact same version.

2) Script editor from "Customize Rules..." menu change after close and open it for the 2nd time - even without restart Fiddler Classic. Folding feature is missing and comment will be green instead of gray as after fresh install Fiddler Classic. I usually use this variant though, maybe because the gray comment version is found only once after fresh install. Embedded editor in tab is green with folding though. But problem 1) hint never work anywhere.

Nick Iliev
Telerik team
 updated answer on 01 Apr 2024
2 answers
35 views

Hey,

currently trying the grpc Feature of Fiddler Everywhere. I have no Protofile (not sure if it is required at all).
But when I running Fiddler as Interceptor (I using Proxifer to reditrect traffic to Fiddler Everywhere)

it tells me: Incomplete Message on the Response.

When I run the App without Fiddler it works, so I assume Fiddler can't handle the grpc yet. Or is the Protofile required for him to handle  + forward the message?

Nick Iliev
Telerik team
 answered on 15 Mar 2024
1 answer
18 views

Good day,

 

so im running the trial versions, and it seems like i have to configure every device i want to monitor individually?

cant i point my router to fiddler and through that see all my connected devices?

Nick Iliev
Telerik team
 answered on 13 Mar 2024
1 answer
37 views

In my program; I use Fiddler Core. When ran on a pc; it set's the proxy as it should but when trying to browse the network with the proxy on; i'm getting "Your connection is Not private"; error message on all browsers. Please see attached photos for reference. Here is my running code:

 


private void stopfiddler()
{
    if (!FiddlerApplication.IsStarted())
    {
    }
    else
    {
        FiddlerApplication.Shutdown();
    }
}

public static void SavePreferences()
{

    Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
    string cert = ConfigurationManager.AppSettings["fiddler.certmaker.bc.cert"];
    string key = ConfigurationManager.AppSettings["fiddler.certmaker.bc.key"];
    if (cert == null || key == null)
    {
        config.AppSettings.Settings.Add("fiddler.certmaker.bc.cert", FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.cert", null));
        config.AppSettings.Settings.Add("fiddler.certmaker.bc.key", FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.key", null));
        config.Save(ConfigurationSaveMode.Modified);
        ConfigurationManager.RefreshSection("appSettings");
    }
    else
    {
        config.AppSettings.Settings["fiddler.certmaker.bc.cert"].Value = FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.cert", null);
        config.AppSettings.Settings["fiddler.certmaker.bc.key"].Value = FiddlerApplication.Prefs.GetStringPref("fiddler.certmaker.bc.key", null);
        config.Save(ConfigurationSaveMode.Modified);
        ConfigurationManager.RefreshSection("appSettings");
    }
}

public static bool IsCertCreated()
{

    Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
    string cert = ConfigurationManager.AppSettings["fiddler.certmaker.bc.cert"];
    string key = ConfigurationManager.AppSettings["fiddler.certmaker.bc.key"];
    if (cert != null && key != null)
    {
        return true;
    }
    else
    {
        return false;
    }
}

public static void RemoveFiddlerPreferences()
{
    Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

    config.AppSettings.Settings.Remove("fiddler.certmaker.bc.cert");
    config.AppSettings.Settings.Remove("fiddler.certmaker.bc.key");

    config.Save(ConfigurationSaveMode.Modified);
    ConfigurationManager.RefreshSection(config.AppSettings.SectionInformation.Name);
}

public static void LoadPreferences()
{
    string cert = ConfigurationManager.AppSettings["fiddler.certmaker.bc.cert"];
    string key = ConfigurationManager.AppSettings["fiddler.certmaker.bc.key"];

    if (!string.IsNullOrEmpty(cert) && !string.IsNullOrEmpty(key))
    {
        FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.cert", cert);
        FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.key", key);
    }

}
private void Installcert()
{

    if (IsCertCreated())
    {
        
    }
    else
    {
        BCCertMaker.BCCertMaker certProvider = new BCCertMaker.BCCertMaker();
        certProvider.CreateRootCertificate();
        X509Certificate2 rootCert = certProvider.GetRootCertificate();
        // Create a certificate store and add the root certificate to it
        X509Store store = new X509Store(StoreName.Root, StoreLocation.LocalMachine);
        store.Open(OpenFlags.ReadWrite);
        store.Add(rootCert);
        SavePreferences();
    }
}

private void Remove()
{
    using (var store = new X509Store(StoreName.Root, StoreLocation.LocalMachine))
    {
        store.Open(OpenFlags.ReadWrite);

        var certificatesToRemove = store.Certificates
            .Cast<X509Certificate2>()
            .Where(c => c.SubjectName.Name.ToLower().Contains("DO_NOT_TRUST_FiddlerRoot"))
            .ToList();

        foreach (var cert in certificatesToRemove)
        {
            string certPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, cert.Thumbprint + ".cer");
            if (File.Exists(certPath))
            {
                File.Delete(certPath);
            }

            store.Remove(cert);
        }
        RemoveFiddlerPreferences();
        store.Close();
        MessageBox.Show("Deleted");
    }
}

private void appentext(string value)
{
    if (InvokeRequired)
    {
        return;
    }
}

 

 

 

 

Nick Iliev
Telerik team
 answered on 26 Feb 2024
1 answer
20 views

During the process of downloading Fiddler, a black interface will flash up and I will be able to install it successfully. However, when I try to use the software, no matter how I start it, it cannot be opened.

Nick Iliev
Telerik team
 answered on 26 Feb 2024
1 answer
31 views

Good afternoon,

We have installed Fiddler Classic on a Windows 11 laptop specifying install directory within Program Files, as per https://feedback.telerik.com/fiddler/1441442-default-install-fiddler-for-all-users, and it is not installing correctly. It just dumps the files in the folder. No Start Menu entry anywhere, no entry in the machine Uninstall registry. Key is however created within the installing users Uninstall key. Same issues if the installer is sent via management software, e.g. SCCM. Only here there is no registry entry created at all. This does not follow basic principles for software for management in a corporate environment, or frankly any other environment than that of a skilled personal user.

I have searched your forum and there is nothing recent to this post for machine-wide / corporate installs. As this "solution" was from 2019 and advises that it may cause issues with extensions, I expect that now, 4-5 years later, you have since sorted your installer out?

Tried to uninstall manually from the install directory using your uninst file located there and this fails stating: "A Progress Telerik Fiddler Classic component appears to be running. Please close all Progress Telerik Classic-related applications and try again." There is no process running called Fiddler, and looking through the list there is nothing obviously linked to your software. System has been restarted and same issue. Had to login with another user to uninstall. This is not appropriate. Please provide a full listing of your processes. Quite frankly, your software is acting more like malware.

Do you have a machine-wide installer please? A working one. The current state for deployment of your software is appalling.

Regards,

Craig.

Nick Iliev
Telerik team
 answered on 21 Feb 2024
1 answer
20 views
How can I exempt all in FiddlerCore as if I was using the Win Config option in Fiddler Classic? Thank you in Advance!
Nick Iliev
Telerik team
 answered on 21 Feb 2024
1 answer
18 views
When i capture traffic and try to load something on the page i get logged out...... when i turn capturing off and reload the page everything is fine all pages load fine .... is this a Security issue like a WAF?? a Captcha issue ? or a Cloudflare Issue?  I have tls1.0, 1.1 and 1.2 enabled
Nick Iliev
Telerik team
 answered on 05 Feb 2024
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?