如何让Fiddler筛选特定的本地主机端口 [英] How to get Fiddler to filter specific localhost ports

查看:1648
本文介绍了如何让Fiddler筛选特定的本地主机端口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

与通常的请求相反:如何让Fiddler捕获对localhost的请求,如何停止它获取特定端口?

In a reverse of the usual request of how do I get Fiddler to capture requests to localhost, how do I stop it getting specific ports?

自从安装IE 9 RC以来,我正在收到大量的对Mesh的请求...

Since installing the IE 9 RC, I'm getting loads of requests to Mesh appearing ...

http://localhost:2048/V4.0i/Sync/Devices/SDI6BHE6YYAHMR67S32S4MTROU/Endpoints

我尝试将locahost:2048添加到Fiddler过滤器中/隐藏以下主机,但这不起作用

I've tried adding locahost:2048 to the Fiddler Filters / Hide the following Hosts, but that's not working

推荐答案

在Fiddler中使用它,用Ctrl+R打开自定义规则,然后添加到OnBeforeRequest ...

Sussed it ... in Fiddler, open the custom rules with Ctrl+R and add to the OnBeforeRequest ...

if (oSession.host=="localhost:2048"){
    oSession["ui-hide"] = "true";
}

这篇关于如何让Fiddler筛选特定的本地主机端口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆