1. 程式人生 > >fiddler報錯"creation of the root certificate was not successful"

fiddler報錯"creation of the root certificate was not successful"

appdata fiddler data sha1 -s 監控 系統 執行 大於

在使用Fiddler抓包時,我們有時需要抓https協議的包,這種需要配置一下 開啟監控https才可以

首先 找到Tools——>Options

技術分享圖片

在彈出的菜單中 選擇https項 勾選捕捉https

技術分享圖片

這樣配置完OK之後 一般會彈窗提示安裝證書,點擊安裝,然後重啟Fiddler即可。

但有時候沒有彈窗安裝證書或根本就沒有提示,這種情況一般在Win7中較多出現,Win7的系統https方面 在.net Framework4.0上有bug

網上搜羅一番之後解決方案是

1.cmd 命令行 找到fiddler的安裝目錄 如:

cd C:\Users\JayshSoft\AppData\Local\Programs\Fiddler

然後執行以下命令

makecert.exe -r -ss my -n "CN=DO_NOT_TRUST_FiddlerRoot, O=DO_NOT_TRUST, OU=Created by http://www.fiddler2.com" -sky signature -eku 1.3.6.1.5.5.7.3.1 -h 1 -cy authority -a sha1 -m 120 -b 09/11/2018

註意:這個命令最後的日期 09/11/2018 一定要大於現在的日期 否則創建證書是過期的

fiddler報錯"creation of the root certificate was not successful"