本文转载自:
http://www.jackness.org/2014/12/26/%E7%BB%99fiddler%E6%B7%BB%E5%8A%A0%E7%9B%91%E6%B5%8B%E8%AF%B7%E6%B1%82%E7%9A%84-ip%E5%9C%B0%E5%9D%80/?utm_source=tuicool&utm_medium=referral
fiddler 相信是我们前端在 window系统下最广泛使用的抓包、本地映射工具了,但有时候,却还是不能满足我们的需求,例如为了查找具体是哪个cdn节点出问题,需要监测域名对应的ip地址的时候。
当然,本文就是为了解决这个问题(在海龙哥的指导下)诞生的。下面是介绍如何再 fiddler 中添加 监听 域名对应的 ip地址
首先 你得先有个 fiddler
怎么安装,这里就不说了, 这里有下载的链接 http://www.telerik.com/fiddler
安装需要 framewrok 环境, window OS only。
下面来点真的,如何在 fiddler下 添加 ip地址 检测
首先 我们打开 fiddler
点击 Rules -> Customize Rules…
然后会出现一个 CustomRules.js 文本,
ctrl + f 搜索 “static function Main()”
将以下代码 替换掉原来的 function
static function Main() { var today: Date = new Date(); FiddlerObject.StatusText = " CustomRules.js was loaded at: " + today; // Uncomment to add a "Server" column containing the response "Server" header, if present FiddlerObject.UI.lvSessions.AddBoundColumn("Server IP", 120, "X-HostIP"); }
保存, 重启 fiddler,你会发现。。。怎么没有 ip地址的? 说好的 ip地址呢
别急, 把横向滚动条拖到最后, 你就能看到了
然后 你就把这个 tab 拖回 前面, ok 完成。
原文地址:https://www.cnblogs.com/caoj/p/8638375.html
时间: 2024-10-12 02:28:36