码迷,mamicode.com
首页 > Web开发 > 详细

WireShark过滤解析http/TCP

时间:2015-01-05 18:30:48      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:

HTTP分析

http——Packet Counter      http总的统计

http.request.method == "GET" http GET请求

http.response==1  http所有的响应包 

http.response==1 && http.response.code==200 响应请求成功的包

http.response==1 && http.response.code==201 201 created 提示知道新文件的URL,成功请求并创建了新的资源
http.response==1 && http.response.code==304 客户端已经缓存,不带响应体
http.response==1 && http.response.code==302 客户端继续使用原有URI

http.request.method==POST 

http.host==magentonotes.com

http.host contains magentonotes.com

//过滤经过指定域名的http数据包,这里的host值不一定是请求中的域名

http.response.code==302 //过滤http响应状态码为302的数据包

http.response==1 //过滤所有的http响应包

http.request==1 //过滤所有的http请求,貌似也可以使用http.request

http.request.method==POST

过滤所有请求方式为POST的http请求包,注意POST为大写

http.cookie contains guid //过滤含有指定cookie的http数据包

http.request.uri==”/online/setpoint” //过滤请求的uri,取值是域名后的部分

http.request.full_uri==” http://task.browser.360.cn/online/setpoint” //过滤含域名的整个url则需要使用http.request.full_uri

http.server contains “nginx” //过滤http头中server字段含有nginx字符的数据包

http.content_type == “text/html” //过滤content_type是text/html的http响应、post包,即根据文件类型过滤http数据包

http.content_encoding == “gzip” //过滤content_encoding是gzip的http包

http.transfer_encoding == “chunked” //根据transfer_encoding过滤

http.content_length == 279

http.content_length_header == “279″

//根据content_length的数值过滤

http.server //过滤所有含有http头中含有server字段的数据包

http.request.version == "HTTP/1.1" //过滤HTTP/1.1版本的http包,包括请求和响应

http.response.phrase == “OK” //过滤http响应中的phras

  

TCP完整分析:

WireShark过滤解析http/TCP

标签:

原文地址:http://www.cnblogs.com/kxdblog/p/4203924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!