Fiddler SessionFlags
Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collection. The flags control how the session is processed and displayed in the Fiddler session list. Flags can be set by FiddlerScript or an IFiddlerExtension.
Tips
- Flag names are not case-sensitive. Flag values are always strings.
- If you examine oFlags["non-existent-flag"], the result will be null.
- The oFlags collection is the "indexer" for the Session object. Thus,oSession.oFlags["flagname"] can be written as oSession["flagname"] or oSession["SESSION", "flagname"].
- You can remove a flag from the list by calling oFlags.Remove("flagname") or settingoSession["flagname"] = null.
- The value of most flags is not important; simply adding the flag is enough. So (perhaps surprisingly) oSession["ui-hide"]="no" does the same thing as oSession["ui-hide"] = "true" -- it hides the session.
- While you can call oFlags.Add("flagname"), this will throw an exception if the flag already exists. It's better to just set the value: oFlags["flagname"] = "value";
- You can create new flags of your own invention that attach metadata to a given session. To avoid naming conflicts, it's recommended that you choose distinctive flagnames, e.g.addon.acme.loggingFlag.
| Flag Name | Meaning |
| ui-hide | Hide the session from the Session List. The session will continue to run. Breakpoints on hidden sessions are ignored. Note: hiding a session will free up the memory that would otherwise be used to hold the session data in memory. |
| ui-color | The value of this flag determines the font color used to render this session in the Session List. |
| ui-backcolor | The value of this flag determines the background color used behind this session's entry in the Session List. |
| ui-bold | If present, this session's entry will be bolded in the Session List. |
| ui-italic | If present, this session's entry will be italicized in the Session List. |
| ui-strikeout | If present, this session's entry will be struck out in the Session List. |
| ui-customcolumn | The value of this flag is shown in the Fiddler Session List's "User-defined" column. |
| ui-breakrequest | If present, execution of this session will pause before the request is issued. |
| ui-breakresponse | If present, execution of this session will pause after the response is received. |
| ui-comments | The Comment, if any, which the user set on this session. |
| x-overrideHost | Provide the Host:Port combination which should be used for DNS resolution purposes. Note that this mechanism does not change the HOST header on the request, and thus is not useful if there's an upstream gateway. |
| x-overrideGateway | Provide the Host:Port combination of a gateway that should be used to proxy this request, or DIRECT to send the request directly to the origin server. |
| x-serversocket | Read-only. String containing data about the reuse status of the server socket. |
| x-securepipe | Read-only. String containing data about the reuse status of a secure server socket. |
| x-no-decrypt | If set on a CONNECT tunnel, the traffic in the tunnel will not be decrypted. Requires Fiddler v2.0.8.9 or later. |
| https-Client-Certificate | Filename of client certificate (e.g. .CER) that should be attached to this secure request. Requires Fiddler v2.1.0.3 or later. |
| x-SuppressProxySupportHeader | Prevent Fiddler from adding a "Proxy-Support: Session-Based-Authentication" header to HTTP/401 or HTTP/407 responses that request Negotiate or NTLM authentication. Requires Fiddler v2.1.4.2 or later. |
| x-ProcessInfo | Information (module name and ProcessID) on source of local requests. Requires Fiddler v2.1.4.1 or later. |
| x-clientIP | Read-only. Indicates the client IP that sent this request. Mostly useful when multiple computers on a network are pointed to a single Fiddler instance. |
| x-clientport | Read-only. Indicates the port on the client that sent this request. |
| x-hostIP | Read-only. Indicates the IP address of the server used for this request. |
| x-TTFB | Deprecated. Use oSession.Timer instead. Time to the first byte of the response, in milliseconds. |
| x-TTLB | Deprecated. Use oSession.Timer instead. Time to the last byte of the response, in milliseconds. |
| request-trickle-delay | Milliseconds to delay each outbound kilobyte of request data. |
| response-trickle-delay | Milliseconds to delay each inbound kilobyte of response data. |
| x-HTTPProtocol-Violation | Contains data about violations of the HTTP protocol encountered while processing this session. |
| x-replywithfile | The value of this flag is the name of a file in the Captures/Responses folder (or a fully-qualified filename) containing a HTTP response to return to the client rather than sending the request to the server. |
| x-repliedwithfile | Read-only. Contains the name of the file specified in x-replywithfile, after the automatic response was loaded. |
| log-drop-request-body | Drop the request body from the session list after request is sent to the server. Useful for minimizing memory usage. |
| log-drop-response-body | Drop the request body from the session list after response is sent to the client. Useful for minimizing memory usage. |
| x-OverrideCertCN | String specifying the hostname that should appear in the CN field of this CONNECT tunnel's Fiddler-generated certificate. |
Fiddler SessionFlags的更多相关文章
- Fiddler (二) Script 用法
通过前一篇博客 [Fiddler教程], 我们了解了Fiddler的基本用法, 现在我们来看看Fiddler的高级用法. Fiddler Script. Fiddler中的script 可以 ...
- Fiddler源代码分享
frmViewer.cs: namespace Fiddler{ using Microsoft.Win32; using System; using System.Collecti ...
- fiddler 插件开发
本文主要讲解使用.net C#语言开发Fiddler插件. 1.在Fiddler 会话列表中添加自定义列 使用FiddlerApplication.UI.lvSessions.AddBoundColu ...
- Fiddler Session标志
Each Session object in Fiddler contains a collection of string flags, in the Session.oFlags[] collec ...
- fiddler发送post请求
1.指定为 post 请求,输入 url Content-Type: application/x-www-form-urlencoded;charset=utf-8 request body中的参数格 ...
- [转]Fiddler抓取Android真机上的HTTPS包
此篇文章转载自:http://blog.csdn.net/roland_sun/article/details/30078353 工作中经常会需要对一些app进行抓包, 但是每次默认都是只抓http请 ...
- 从Fiddler抓包到Jmeter接口测试(简单的思路)
备注:本文为博主的同事总结的文章,未经博主允许不得转载. Fiddler下载和配置安装 从网上下载fiddler的安装包即可,直接默认,一直点击下一步,直至安装完成. 安装完成后直接打开Fiddler ...
- web开发调试神器——fiddler的使用
好累 以后再写 http://docs.telerik.com/fiddler/knowledgebase/autoresponder
- 用Fiddler模拟低速网络环境
有时候宽频网路用习惯了… 在开发的过程就比较少去考虑最佳化的问题… 但当有人反应说「你的网页好慢」甚至当网路速度慢,会造成你的网页跳出什么啊哩不哒的bug时要如何重现呢? 我们可以用Fiddler 这 ...
随机推荐
- 使用Chrome快速实现数据的抓取(四)——优点
些一个抓取WEB页面的数据程序比较简单,大多数语言都有相应的HTTP库,一个简单的请求响应即可,程序发送Http请求给Web服务器,服务器返回HTML文件.交互方式如下: 在使用DevProtocol ...
- as 汇编器
[root@localhost ~]# cat .s .file "write.s" .section .rodata hello: .string "hello, wo ...
- C#实现ATM自动取款机
本篇用C#实现ATM自动取款机的一些功能.面临的第一个问题是:如何把与自动取款机相关的有形的.无形的方面抽象出来.大致如下: (1)关于用户帐号的类:Account(2)关于银行数据库的类:BankD ...
- xcode4.3.2 arc模式下导入非arc的文件 转
在arc模式下,我们经常会用到非arc的类库,此时我们可以在Compile Sources下对该文件进行编辑加入 -fno-objc-arc 如图中所示,就可以使用非arc的类库了 转:htt ...
- python测试开发django-7.django模板继承(block和extends)
前言 打开一个网站时候,点导航栏切换到不同的页面,发现导航部分是不变的,只是页面的主体内容变了,于是就可以写个母模板,其它的子页面继承母模板就可以了. 母模板 可以在母模板中添加多个块标签,每个块标签 ...
- appium+python自动化53-adb logcat查看日志
前言 做app测试,遇到异常情况,查看日志是必不可少的,日志如何输出到手机sdcard和电脑的目录呢?这就需要用logcat输出日志了 以下操作是基于windows平台的操作:adb logcat | ...
- POP的Stroke动画
POP的Stroke动画 效果 源码 https://github.com/YouXianMing/Animations // // PopStrokeController.m // Animatio ...
- iOS中alloc与init
面向对象的3大特性,封装继承和多态. 我遇到过封装相关的问题,因为初级封装简单,常常暴露出被你封装的接口,进一步进行高级封装隐藏接口的时候才发现,封装是一门学问,而这门学问得从最基础的alloc与in ...
- android之获得当前连接wifi的名字
WifiManager wifiMgr = (WifiManager) mActivity.getSystemService(Context.WIFI_SERVICE); int wifiState ...
- NLP知识结构概述
NLP知识结构概述 1)自然语言处理:利用计算机为工具,对书面实行或者口头形式进行各种各样的处理和加工的技术,是研究人与人交际中以及人与计算机交际中的演员问题的一门学科,是人工智能的主要内容. 2)自 ...