Fiddlercore证书绕过
Fiddlercore certificate bypass
如何获取fiddler核心证书?
我试过使用 Fiddler4 证书并将其导出到桌面并将其安装到 android 模拟器中。
但我总是遇到这个证书错误。我正在使用带有 android 模拟器的 fiddler core 来刺激我的应用程序测试。我只是在做一个小演示,看看它是否有效。但是,显然,从 fiddler 导出的证书似乎无效。
这将为您提供字节数:
internal static byte[] getRootCertBytes()
{
X509Certificate2 oRoot = Fiddler.CertMaker.GetRootCertificate();
if (null == oRoot)
{
return null;
}
return oRoot.Export(X509ContentType.Cert);
}
您可以使用 File.WriteAllBytes()
将它们存储到磁盘。
如何获取fiddler核心证书?
我试过使用 Fiddler4 证书并将其导出到桌面并将其安装到 android 模拟器中。
但我总是遇到这个证书错误。我正在使用带有 android 模拟器的 fiddler core 来刺激我的应用程序测试。我只是在做一个小演示,看看它是否有效。但是,显然,从 fiddler 导出的证书似乎无效。
这将为您提供字节数:
internal static byte[] getRootCertBytes()
{
X509Certificate2 oRoot = Fiddler.CertMaker.GetRootCertificate();
if (null == oRoot)
{
return null;
}
return oRoot.Export(X509ContentType.Cert);
}
您可以使用 File.WriteAllBytes()
将它们存储到磁盘。