This is a migrated thread and some comments may be shown as answers.

How to disable it in my tools

1 Answer 52 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Ruzty
Top achievements
Rank 1
Ruzty asked on 16 Mar 2016, 11:37 PM
People seem to be bypassing my authentication system using this and i am wondering if there's a way to detect it being used...I've tried

if (Process.GetProcessesByName("fiddler").Length != 0)
        {
            MessageBox.Show("Internal Error");
            Close();
        }
But it doesn't seem to detect it....if anyone could help that would be GREAT..Thx..!B

1 Answer, 1 is accepted

Sort by
0
Tsviatko Yovtchev
Telerik team
answered on 21 Mar 2016, 04:58 PM
Hi,

It should be possible to detect whether Fiddler is running on the same machine. However, are you really sure this is going to solve your problem? There is other software like Fiddler, too and there is FiddlerCore that one can use to write custom Fiddler like software. So maybe improving the authentication system itself would be a more beneficial approach.

Regards,
Tsviatko Yovtchev
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Fiddler Classic
Asked by
Ruzty
Top achievements
Rank 1
Answers by
Tsviatko Yovtchev
Telerik team
Share this question
or