fiddler显示请求的ip地址

来源:互联网 发布:彩虹岛 知乎 编辑:程序博客网 时间:2024/04/30 18:44

1. 在 fiddler中点击 Rules -> Customize Rules…

fiddler_img01   2. 会出现一个 CustomRules.js 文本,

3. 修改 “static function Main()”

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");}

4. 保存, 重启 fiddler, 把横向滚动条拖到最后,可以看到ip了

0 0
原创粉丝点击