其他分享
首页 > 其他分享> > Wireshark捕获过滤器

Wireshark捕获过滤器

作者:互联网

捕获过滤器:
捕获http get ,post,put请求
在这里插入图片描述

0x47455420 ==>GET ascii码
GET 请求:port 80 and tcp[((tcp[12:1] & 0xf0) >>2):4] = 0x47455420
POST 请求:port 80 and tcp[((tcp[12:1] & 0xf0) >>2):4] = 0x504f5354
PUT 请求:port 80 and tcp[((tcp[12:1] & 0xf0) >>2):4] = 0x505554

标签:12,请求,捕获,tcp,0xf0,过滤器,80,port,Wireshark
来源: https://blog.csdn.net/justinsun221/article/details/121366166