【发布时间】:2016-11-03 09:54:01
【问题描述】:
我在Wireshark(2.0.3版)过滤包,tcp包数据是这样的:
7e:02:00:00:3c:01:41:31:07:17:83:02:97:00:00:00:00:00:0c:00:c3:02:28:ba:50:06:f1:ec:c0:00:59:00:00:01:2e:16:06:30:10:46:00:01:04:00:00:e6:2f:02:02:00:00:03:02:00:00:25:04:00:00:00:00:2b:04:00:00:00:00:30:01:13:31:01:12:5e:7e
现在我想找到第三个字节到第四个字节包含00:00,如何编写过滤表达式?我试过了:
ip[3,2] == 00:00 #in tcpdump it works
data.data[3,2] == 00:00 #data.data == 00:00,but data not just only contain:00:00
有什么办法吗?
【问题讨论】:
标签: networking tcp wireshark