How to use Fiddler's Root Certificate Authority in FiddleCore?

◇◆丶佛笑我妖孽 提交于 2019-12-11 16:31:20

问题


I would like to load the Root CA generated by Fiddler in FiddleCore to be use to sign HTTPS certificates on the fly. My reason for doing this is to be able to switch between Fiddler and FiddlerCore on the fly.


回答1:


First the fiddler.certmaker.bc.cert and fiddler.certmaker.bc.key pref values in Fiddler are obtained by typing about:config in the QuickExec bar.

Afterwards in FiddlerCore (before starting the proxy) they are applied:

Fiddler.FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.key", FIDDLER_KEY);
Fiddler.FiddlerApplication.Prefs.SetStringPref("fiddler.certmaker.bc.cert", FIDDLER_CERT);


来源:https://stackoverflow.com/questions/52193433/how-to-use-fiddlers-root-certificate-authority-in-fiddlecore

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!