Fiddler 4 抓包

Posted fr5s

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fiddler 4 抓包相关的知识,希望对你有一定的参考价值。

Fiddler 4

Tools –> Fiddler Options

HTTPS -> 勾选“CaptureHTTPS CONNECTs”,同时勾选“Decrypt HTTPS traffic”, 选择“…fromremote clients only” , 勾选 “Ignore servercertificate errors” 

Conections -> 勾选“Allow remote computersto connect”

//Customize Rules 
//在class Handlers中加入以下代码 可以在Fiddler右边栏的Log标签里,看到WebSocket的数据包
static function OnWebSocketMessage(oMsg: WebSocketMessage) {
    FiddlerApplication.Log.LogString(oMsg.ToString());
}

//在函数OnBeforeResponse里面添加下面代码:
if (oSession.oRequest["User-Agent"].indexOf("android") > -1 && oSession.HTTPMethodIs("CONNECT")) {
            oSession.oResponse.headers["Connection"] = "Keep-Alive";
}

//修改后
static function OnBeforeResponse(oSession: Session) {
        if (m_Hide304s && oSession.responseCode == 304) {
            oSession["ui-hide"] = "true";
        }
        if (oSession.oRequest["User-Agent"].indexOf("Android") > -1 && oSession.HTTPMethodIs("CONNECT")) {
            oSession.oResponse.headers["Connection"] = "Keep-Alive";
        }
    }

手机打开网页下载证书 Fiddler Root certificate

 

以上是关于Fiddler 4 抓包的主要内容,如果未能解决你的问题,请参考以下文章

抓包工具Fiddler 4的使用方法

Fiddler抓包工具总结

Fiddler抓包工具总结

使用fiddler+模拟器进行APP抓包

fiddler抓包详细教程--接口测试

抓包工具Fiddler