[Fiddler]Unable to Generate Certificate

I‘m using Fiddler2 (or trying) to capture SSL traffic for a windows desktop gadget hitting an https web service. It used to work, and then it stopped a couple days ago, always with this error:

---------------------------
Unable to Generate
Certificate
---------------------------
Creation of the interception certificate failed.
makecert.exe returned -1.
Results from C:\Program Files\Fiddler2\MakeCert.exe -ss my -n

"CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by
http://www.fiddler2.com" -eku 1.3.6.1.5.5.7.3.1 -r -cy authority -a

sha1
Error: Can‘t create the key of the subject (‘JoeSoft‘)
Failed

-------------------------------------------

To   configure Fiddler to capture web traffic from window, just follow these steps.

1.open Fiddler. Click Tools, Fiddler Options..

2.Select the Connections tab. Fiddler listens on port 88888 by default but can be changed here if needed. Make sure the ‘Allow remote computers to connect’ option is checked. It is not checked by default.

3.Click OK. You will need to close and re-open Fiddler for the changes to take effect.

4.Once Fiddler is re-opened, make sure it is capturing traffic by clicking on File. The Capture Traffic option should have a checkmark next to it.

时间: 2024-10-11 22:50:31

[Fiddler]Unable to Generate Certificate的相关文章

Unable to generate a temporary class (result=1)解决方法

Unable to generate a temporary class (result=1).error CS2001: Source file 'C:\WINDOWS\TEMP\ug5v9uxt.0.cs' could not be found System.InvalidOperationException: Unable to generate a temporary class (result=1).error CS2001: Source file 'C:\WINDOWS\TEMP\

【转】Fiddler https 证书问题

老外的提问: I'm using Fiddler2 (or trying) to capture SSL traffic for a windows desktop gadget hitting an https web service. It used to work, and then it stopped a couple days ago, always with this error: ---------------------------Unable to Generate Cert

Fiddler抓取https相关设置

转自:https://www.cnblogs.com/joshua317/p/8670923.html 很多使用fiddler抓包,对于http来说不需太多纠结,随便设置下就能用,但是抓取https就死活抓不了. 出现诸如以下问题: unable to generate certificate creation of the root certificate was not successful; Failed to find the root certificate in User Root

远程服务器推送

本文为博主原创文章,未经博主允许不得转载. 目录(?)[+] 一.背景概述: 1,环境配置 APNS:Apple Push Notification Service.本文对推送相关概念不再赘述,只侧重完整流程. Demo 开发环境:Mac os 10.9.4  ,Xcode 6.0.1 :测试设备:iphone 4s(ios 7.1) 服务端开发环境:mac 10.9.4  + php 5.4.24. Demo 下载地址:点击打开链接 2,APNS 相关博客 如对apns相关概念不清楚,可参考以

【转】 svn 错误 以及 中文翻译

直接Ctrl+F 搜索你要找的错 # # Simplified Chinese translation for subversion package # This file is distributed under the same license as the subversion package. # # Update to new pot: # msgmerge --update zh_CN.po subversion.pot # # Check translation: # msgfmt

openssl生成SSL证书的流程

SSL证书通过在客户端浏览器和Web服务器之间建立一条SSL安全通道(Secure socketlayer(SSL),SSL安全协议主要用来提供对用户和服务器的认证:对传送的数据进行加密和隐藏:确保数据在传送中不被改变,即数据的完整性,现已成为该领域中全球化的标准.由于SSL技术已建立到所有主要的浏览器和WEB服务器程序中,因此,仅需安装服务器证书就可以激活该功能了).即通过它可以激活SSL协议,实现数据信息在客户端和服务器之间的加密传输,可以防止数据信息的泄露.保证了双方传递信息的安全性,而且

[转]OpenVPN官网的HOWTO

因为墙的原因,打不开.特此转一下: HOWTO Introduction OpenVPN is a full-featured SSL VPN which implements OSI layer 2 or 3 secure network extension using the industry standard SSL/TLS protocol, supports flexible client authentication methods based on certificates, sm

kubernetes traefik配置https实践操作记录

1.参考文档 http://traefik.cn/ 2.访问方式简易说明 参考文档https://tonybai.com/2018/06/25/the-kubernetes-ingress-practice-for-https-service/ 前面一篇:traefik基础部署记录,介绍了最简单的http访问traefik,访问过程参考见下: client --- (via http) ---> traefik ---- (via http) ----> services 现在要实践的是更安全

openssl生成SSL证书的流程 - moonhillcity的博客 - CSDN博客

1.安装openssl 之后在/usr/lib/ssl目录下(ubuntu系统,用whereis查下ssl目录即可)下找到openssl.cnf,拷贝到工作目录下. 2.工作目录下新建demoCA文件夹,文件夹中新建文件index.txt和serial,再创建一个newcerts的文件夹.在serial里面添加字符01. mkdir demoCA cd demoCA touch ./{serial, index.txt} vi serial 添加01 :wq 生成证书过程:(注意以下过程都在工作