Charles的Map功能能够将某个请求进行重定向,用重定向的内容响应请求的内容。这个功能很是方便。在抓包过程中,有时候为了调试方便,须要将线上的服务定位到内网。好比咱们线上的服务器域名为 api.example.com,而内网的用于调试的服务器域名为 test.neiwang.com,那么就须要将全部域名 api.example.com替换为 test.neiwang.com,就可使用charles的这个功能,可是charles是收费软件,使用破解版又可能不安全,因此咱们须要用一款免费抓包工具来代替,fiddler就是个不错的选择。可是fiddler并无map功能,不过不要紧,咱们能够经过编写脚原本实现这个功能。
Fiddler菜单中,Rules->Custon Rules,或按Ctrl+R键,编辑ScriptEditor代码文件,在OnBeforeRequest函数(static function OnBeforeRequest(oSession: Session))里面加上几句代码:
端口不一样:css
if (oSession.host.ToLower=="https://api.example.com:8080") { oSession.host="http://test.neiwang.com:9090"; }
端口相同:html
if (oSession.HostnameIs("www.bayden.com")) { oSession.hostname="test.bayden.com"; }
拓展开来,若是咱们须要修改请求和响应信息,应该怎么编写代码呢?
1.增长请求头:api
oSession.oRequest["NewHeaderName"] = "New header value";
2.将请求的某个页面替换为同一个站点的不一样页面安全
if (oSession.PathAndQuery=="/version1.css") { oSession.PathAndQuery="/version2.css"; }
3.将请求的某个页面替换为不一样站点的页面服务器
if (oSession.url=="www.example.com/live.js") { oSession.url = "dev.example.com/workinprogress.js"; }
修改响应:static function OnBeforeResponse(oSession: Session)
1.删除响应头less
oSession.oResponse.headers.Remove("Set-Cookie");
2.解压缩和unchunk一个HTTP响应函数
// Remove any compression or chunking from the response in order to make it easier to manipulate oSession.utilDecodeResponse();
3.在响应的HTML中搜索关键词(不区分大小写)工具
if (oSession.oResponse.headers.ExistsAndContains("Content-Type", "text/html") && oSession.utilFindInResponse("searchfor", false)>-1){ oSession["ui-color"] = "red"; }
4.搜索和替换HTML内容ui
if (oSession.HostnameIs("www.bayden.com") && oSession.oResponse.headers.ExistsAndContains("Content-Type","text/html")){ oSession.utilDecodeResponse(); oSession.utilReplaceInResponse('<b>','<u>'); }
5.移除全部div标签和标签中的内容url
// If content-type is HTML, then remove all DIV tags if (oSession.oResponse.headers.ExistsAndContains("Content-Type", "html")){ // Remove any compression or chunking oSession.utilDecodeResponse(); var oBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes); // Replace all instances of the DIV tag with an empty string var oRegEx = /<div[^>]*>(.*?)<\/div>/gi; oBody = oBody.replace(oRegEx, ""); // Set the response body to the div-less string oSession.utilSetResponseBody(oBody); }
参考连接
https://www.jianshu.com/p/775f83e45a02
https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/modifyrequestorresponse