2017年6月5日

摘要: 我们知道https通信在开始时会发送一个METHOD为CONNECT的请求,让服务器将证书以及相关的信息返回给浏览器,在没有得到这些信息之前,浏览器是不会信任服务器发来的任何数据的。So现在我们要让Fiddler帮我一起骗过浏览器,让他心甘情愿把数据交出来。 打开Fiddler,在右侧的选项卡中找到 阅读全文
posted @ 2017-06-05 17:05 帅胡 阅读(844) 评论(0) 推荐(0) 编辑
摘要: To create alerts for specific sessions, add rules using FiddlerScript. For example: Play a sound when a file is missing. (in OnBeforeResponse) Show HT 阅读全文
posted @ 2017-06-05 16:48 帅胡 阅读(158) 评论(0) 推荐(0) 编辑
摘要: To pause specific sessions, add rules using FiddlerScript to the OnBeforeRequest function (except where noted). For example: Pause all HTTP POSTs to a 阅读全文
posted @ 2017-06-05 16:40 帅胡 阅读(213) 评论(0) 推荐(0) 编辑
摘要: To customize Fiddler's Web Sessions List, add rules using FiddlerScript to the OnBeforeRequest function (except where noted). For example: Display in 阅读全文
posted @ 2017-06-05 16:39 帅胡 阅读(407) 评论(0) 推荐(0) 编辑
摘要: To test application performance, add rules using FiddlerScript to the OnBeforeResponse function (except where noted). For example: Simulate modem uplo 阅读全文
posted @ 2017-06-05 16:35 帅胡 阅读(312) 评论(0) 推荐(0) 编辑
摘要: To make custom changes to web requests and responses, use FiddlerScript to add rules to Fiddler's OnBeforeRequest or OnBeforeResponse function. Which 阅读全文
posted @ 2017-06-05 16:31 帅胡 阅读(473) 评论(0) 推荐(0) 编辑
摘要: Add Rules to Fiddler to create a new menu item as follows: List the new import at the top of your rules script as follows: Note: This example relies u 阅读全文
posted @ 2017-06-05 16:12 帅胡 阅读(437) 评论(0) 推荐(0) 编辑
摘要: The Web Sessions list contains the list of HTTP Requests that are sent by your computer. You can resize and reorder the columns in this list for your 阅读全文
posted @ 2017-06-05 15:26 帅胡 阅读(206) 评论(0) 推荐(0) 编辑
摘要: Fiddler's QuickExec box allows you to launch script-commands quickly. Keyboard Shortcuts Hit ALT+Q to quickly set focus to the QuickExec box. If Fiddl 阅读全文
posted @ 2017-06-05 15:14 帅胡 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Fiddler's AutoResponder tab allows you to return files from your local disk instead of transmitting the request to the server. Creating AutoResponder 阅读全文
posted @ 2017-06-05 15:03 帅胡 阅读(204) 评论(0) 推荐(0) 编辑
摘要: Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collection. The flags control how the session is process 阅读全文
posted @ 2017-06-05 14:54 帅胡 阅读(947) 评论(0) 推荐(0) 编辑
摘要: Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collection. The flags control how the session is process 阅读全文
posted @ 2017-06-05 14:46 帅胡 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 先来看一张自动保存的请求片段 重点来了,下面是实现的js代码 操作步骤 Fiddler菜单 >> Rules >> Customize Rules 如果提示没有下载Fiddler ScriptEditor则按提示下载后进入下一步操作 安装好Fiddler ScriptEditor后,就能打开Cust 阅读全文
posted @ 2017-06-05 14:11 帅胡 阅读(5605) 评论(0) 推荐(0) 编辑
摘要: // 修改session中的显示样式 oSession["ui-color"] = "orange"; // 移除http头部中的MQB-X5-Referer字段 oSession.oRequest.headers.Remove("MQB-X5-Referer"); // 修改http头部中的Cac 阅读全文
posted @ 2017-06-05 14:09 帅胡 阅读(5190) 评论(1) 推荐(0) 编辑

导航