博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fiddler: Creation of interception certificate failed.
阅读量:4693 次
发布时间:2019-06-09

本文共 1597 字,大约阅读时间需要 5 分钟。

最近一直碰到fiddler抓包无法抓到https的通信内容,并提示

Creation of interception certificate failed.

makecert.exe returned -1.

[...] Error: Can’t create the key of the subject (‘JoeSoft’)”

最后决定要解决这个问题,因此研究了下,并在网上搜索了一些资料,最后按照博文

进行操作,最后成功看到https的通信内容。

我觉得关键一点是:

删除:C:\Users\<UserName>\AppData\Roaming\Microsoft\Crypto\RSA\

这个路径下的文件就行了。

不过我建议大家先备份里面的文件,否则出了问题,则无法恢复。

 

最后贴下此博文:

Recently I had some problems with the HTTPS decryption of .

Outlook could not connect to the mail server, promting me again and again for my credentials. Deleting all the Fiddler certificates did solve this problem for me, since Outlook could not verify the correctness of the used certificate.

Unfortunately I did delete the Fiddler root certificate, too.

No clue what happened, but when trying to enable the HTTPS decryption again to view my secured connections the error message “Creation of

interception certificate failed. makecert.exe returned -1. [...] Error:
Can’t create the key of the subject (‘JoeSoft’)” popped up.

I searched my key storage for any certificate related to “JoeSoft” but could not find anything. So time to start from SysInternals to see which key cannot be created.

Here is the solution which worked for me:

  1. Start ProcessMonitor
  2. Set some filters

 

to search for the process name “makecert.exe”

and a path containing “crypto\rsa”

  1. goto the path showing up, something like: C:\Users\<UserName>\AppData\Roaming\Microsoft\Crypto\RSA\<FolderName>
    Rename (beware of not suffixing it, it will not work) or delete the file
  2. Try to activate HTTPS decryption again

转载于:https://www.cnblogs.com/yelaiju/archive/2012/07/19/2598826.html

你可能感兴趣的文章
如何避免在简单业务逻辑上面的细节上面出错
查看>>
Linux shell 命令判断执行语法 ; , && , ||
查看>>
vim代码格式化插件clang-format
查看>>
RTP Payload Format for Transport of MPEG-4 Elementary Streams over http
查看>>
Java环境变量设置
查看>>
【JBPM4】判断节点decision 方法3 handler
查看>>
filter 过滤器(监听)
查看>>
node启动时, listen EADDRINUSE 报错;
查看>>
杭电3466————DP之01背包(对状态转移方程的更新理解)
查看>>
kafka中的消费组
查看>>
python--注释
查看>>
SQL case when else
查看>>
SYS_CONTEXT 详细用法
查看>>
Pycharm配置autopep8让Python代码更符合pep8规范
查看>>
我的第一篇博客
查看>>
【C++算法与数据结构学习笔记------单链表实现多项式】
查看>>
C#垃圾回收机制
查看>>
31、任务三十一——表单联动
查看>>
python之hasattr、getattr和setattr函数
查看>>
maven使用阿里镜像配置文件
查看>>