I want to sniff https traffic with fiddler, but the traffic is generated via a 3rd party assembly instead of a web browser.
Are there similar mechanisms available so that I can add the fiddler certificate into the trusted category or would you recommend any other trick?
views:
215answers:
1
+1
A:
Yes, by default, .NET relies on the Windows Trusted Root store, so you can follow the steps specified at the link Martin provided: fiddler2.com/Fiddler/help/httpsdecryption.asp
Alternatively, after Fiddler's root certificate is created, you can run the following from an Admin command line:
certmgr /add /c /s my /n DO_NOT_TRUST_FiddlerRoot /s root
EricLaw -MSFT-
2010-04-01 01:18:33
I had DO_NOT_TRUST_FiddlerRoot in the trusted root store, while accessing the https site, the site now rejects all my request. HttpAnalyzer works well though
PerlDev
2010-06-28 12:59:28
I don't know what "rejects all my request" means, but given that there are thousands of people who do this with Fiddler every day, I suspect there's something unique about your setup.
EricLaw -MSFT-
2010-06-30 17:33:24