博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Fiddler 默认命令
阅读量:4129 次
发布时间:2019-05-25

本文共 4429 字,大约阅读时间需要 14 分钟。

Command Action Sample usage
?sometext

当你输入想查找某些文本(字符串),Fiddler会高亮显示在sessions 列表中出现该文本的的URL

?searchtext
>size

筛选出sessions中,字节数大于 size 的响应

>40000 <-- Select responses over 40kb
<size

筛选出sessions中,字节数小于 size 的响应

<5k <-- Select responses under 5kb
=status
=method
筛选出sessions中, response status = status or request method = method. =301 <-- Select 301 redirect responses
=POST <-- Select POST requests
@host

筛选出sessions中,请求的主机包含host的。

@msn.com <-- Select www.msn.com, login.msn.com, etc
bold

Mark any future sessions in bold if the url contains the target string

标记url包含目标字符串的sessions列表

bold /bar.aspx

bold        <-- Call with no parameter to clear

bpafter

当请求的URI包含指定的字符串,中断任意响应

bpafter /favicon.ico

bpafter        <-- Call with no parameter to clear

bps

当状态码匹配是,中断任意的响应

bps 404

bps        <-- Call with no parameter to clear

bpv or bpm

对请求的方法(POST/GET)创建请求断点。使用无参数的bpv指令,清除断点

bpv POST

bpv        <-- Call with no parameter to clear

bpu

对URI创建一个请求中断,该URI可以包含特定的字符串。使用无参数的bpu指令,清除断点

bpu /myservice.asmx

bpu        <-- Call with no parameter to clear

cls or clear 清空 session 列表 cls
dump dump all sessions to a zip archive in C:/ dump
g or go 重置sessions里的所有响应 g
help 显示帮助页面 help
hide 在系统Tray中隐藏Fiddler hide
urlreplace Replace any string in URLs with a different string.  Setting this command will clear any previous value for the command; calling it with no parameter will cancel the replacement. urlreplace SeekStr ReplaceWithStr

urlreplace        <-- Call with no parameters to clear

start 注册一个新的系统代理 start
stop 停止指定的系统代理 stop
show Restore Fiddler from system tray -- more useful when triggering rules from ExecAction.exe (see below) show
select Select any session where the response Content-Type header contains the specified string. select image

select css

select htm

allbut or keeponly Hide all sessions except those where Content-Type header contains the specified string. allbut xml

allbut java

quit 关闭Fiddler quit

 

 

 

官方原始文档:

 

Command Action Sample usage
?sometext As you type sometext, Fiddler will highlight sessions where the URL contains sometext.  Hit Enter to set focus to the selected matches. ?searchtext
>size Select sessions where response size is greater than size bytes. >40000 <-- Select responses over 40kb
<size Select sessions where response size is less than size bytes. <5k <-- Select responses under 5kb
=status
=method
Select sessions where response status = status or request method = method. =301 <-- Select 301 redirect responses
=POST <-- Select POST requests
@host Select sessions where the request host contains host.  Hit Enter to set focus to the selected matches. @msn.com <-- Select www.msn.com, login.msn.com, etc
bold Mark any future sessions in bold if the url contains the target string bold /bar.aspx

bold        <-- Call with no parameter to clear

bpafter Break any response where the RequestURI contains the specified string bpafter /favicon.ico

bpafter        <-- Call with no parameter to clear

bps Break any response where the status code matches bps 404

bps        <-- Call with no parameter to clear

bpv or bpm Create a request breakpoint for the specified HTTP method.  Setting this command will clear any previous value for the command; calling it with no parameter will disable the breakpoint. bpv POST

bpv        <-- Call with no parameter to clear

bpu Create a request breakpoint for URIs containing the specified string.  Setting this command will clear any previous value for the command; calling it with no parameter will disable the breakpoint. bpu /myservice.asmx

bpu        <-- Call with no parameter to clear

cls or clear clear the session list cls
dump dump all sessions to a zip archive in C:/ dump
g or go Resume all breakpointed sessions g
help show this page help
hide Hide Fiddler in System tray hide
urlreplace Replace any string in URLs with a different string.  Setting this command will clear any previous value for the command; calling it with no parameter will cancel the replacement. urlreplace SeekStr ReplaceWithStr

urlreplace        <-- Call with no parameters to clear

start Register as the system proxy start
stop Unregister as the system proxy stop
show Restore Fiddler from system tray -- more useful when triggering rules from ExecAction.exe (see below) show
select Select any session where the response Content-Type header contains the specified string. select image

select css

select htm

allbut or keeponly Hide all sessions except those where Content-Type header contains the specified string. allbut xml

allbut java

quit Shutdown Fiddler. quit

转载地址:http://eukvi.baihongyu.com/

你可能感兴趣的文章
Jackson Tree Model Example
查看>>
常用js收集
查看>>
如何防止sql注入
查看>>
maven多工程构建与打包
查看>>
springmvc传值
查看>>
Java 集合学习一 HashSet
查看>>
在Eclipse中查看Android源码
查看>>
Android使用webservice客户端实例
查看>>
层在页面中的定位
查看>>
[转]C语言printf
查看>>
C 语言 学习---获取文本框内容及字符串拼接
查看>>
C 语言学习 --设置文本框内容及进制转换
查看>>
C 语言 学习---判断文本框取得的数是否是整数
查看>>
C 语言 学习---ComboBox相关、简单计算器
查看>>
C 语言 学习---ComboBox相关、简易“假”管理系统
查看>>
C 语言 学习---回调、时间定时更新程序
查看>>
C 语言 学习---复选框及列表框的使用
查看>>
第十一章 - 直接内存
查看>>
JDBC核心技术 - 上篇
查看>>
一篇搞懂Java反射机制
查看>>