Installation Fiddler capture tool for Mac

demand

We all know that Mac computers following a very good capture tool: Charles. But this can only be caught proxy packets. But sometimes there is no way the database Charles want to debug the local network adapter. I think of a Fiddler in the windows below. Search found under the relevant article really can be installed in Mac Fiddler below.

Mono AnSo

First, the need to use the procedure under Mac after the .Net compiler, cross-platform solutions need to use Mono (at this stage, Microsoft has launched a cross-platform program .Net Core, but only supports console program). Installer from download http://www.mono-project.com/download/#download-mac address.


I downloaded version 5.16.0. 


  • After installation, execute the following command in the Terminal in (5.16.0 your version number)

/Library/Frameworks/Mono.framework/Versions/5.16.0/bin/mozroots --import --sync
  • Then if you want to run Fiddler, Mono also need to be added to the environment variable. Editing .bash_profile

$ sudo vim ~/.bash_profile
    加入文本(5.16.0是你的版本号):终端里面,按i进入编辑状态,添加下面文本,按esc,然后:wq,保存退出...:
    export MONO_HOME=/Library/Frameworks/Mono.framework/Versions/5.16.0
    export PATH=$PATH:$MONO_HOME/bin

Fiddler installation

Open Terminal, enter the path to Fiddler unzipped, run run:

From Fiddler's official website https://www.telerik.com/download/fiddler   download fiddler-mac.zip archive. Under extract to non-Chinese-character path.

Fiddler Run

Open Terminal, enter the path to Fiddler unzipped, run run:

$ sudo mono Fiddler.exe

If the following error

The Carbon driver has not been ported to 64bits, and very few parts of Windows.Forms will work properly, or at all Stacktrace

Run the following command to

$ mono --arch=32 Fiddler.exe

Effect screenshots

600


Original Address: Mac under the Fiddler capture tool to install
tags: mac    Fiddler    Charles   

Intelligent Recommendation


--Posted from Rpc

Reproduced in: https: //my.oschina.net/54php/blog/3012653

Guess you like

Origin blog.csdn.net/weixin_34208185/article/details/91634610