使用tshark抓包分析http请求

回复 收藏
默认我们的机器上是没有安装这个工具的。如果你的linux是CentOS那么就使用yum安装
yum  install  -y  wireshark
也可以到官网下载源码 http://www.wireshark.org
具体安装方法,请参考 http://www.qtasp.cn/wiresharkcharpt/buildingwireshark.html
以下,简单介绍这个抓包工具的应用
1. 以下的用法可以显示访问http请求的域名以及uri
  1. tshark -n -t a -R http.request -T fields -e "frame.time" -e "ip.src" -e "http.host" -e "http.request.method" -e "http.request.uri"

2. 以下可以抓取mysql的查询
  1. tshark -n -i eth1 -R 'mysql.query' -T fields -e "ip.src" -e "mysql.query"
另外一种方法:
  1. tshark -i eth1 port 3307  -d tcp.port==3307,mysql -z "proto,colinfo,mysql.query,mysql.query"

3. 以下可以抓取指定类型的MySQL查询
  1. tshark -n -i eth1 -R 'mysql matches "SELECT|INSERT|DELETE|UPDATE"' -T fields -e "ip.src" -e "mysql.query"

4. 统计http的状态
  1. tshark -n -q -z http,stat, -z http,tree
这个命令,直到你ctrl + c 才会显示出结果

5.  tshark 增加时间标签   
  1. tshark  -t  ad
  2. tshark  -t  a


参考  
https://ask.wireshark.org/questions/16964/analyzing-http-protocol-using-tshark


2012-03-21 09:38 举报
已邀请:
0
0

lyhabc

赞同来自:

学习了
0

chao914409585

赞同来自:

学习了
0

loading丶

赞同来自:

嗯,很实用的抓包工具。
0

beacon

赞同来自:

学习
0

linux007

赞同来自:

get

0

吼吼

赞同来自:

已经快速收藏 

0

司佳祥

赞同来自:

学习

0

司佳祥

赞同来自:

学习

0

司佳祥

赞同来自:

学习

回复帖子,请先登录注册

退出全屏模式 全屏模式 回复
评分
可选评分理由: