写点什么

TcpDump

作者:Geek_b2fe7a
  • 2023-12-29
    中国香港
  • 本文字数:310 字

    阅读完需:约 1 分钟

tcpdump 查看 HTTP 流量

sudo tcpdump -s 0 -A 'tcp dst port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'

111111111111111111111111111111111111111111111111111111111111111111111111111111

查看 HTTP GET 请求

sudo tcpdump -s 0 -A 'tcp dst port 80 and tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'
复制代码

查看 HTTP POST 请求

sudo tcpdump -s 0 -A 'tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)'
复制代码

查看 HTTP 请求响应头以及数据

sudo tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'sudo tcpdump -X -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
复制代码


用户头像

Geek_b2fe7a

关注

还未添加个人签名 2020-06-10 加入

还未添加个人简介

评论

发布
暂无评论
TcpDump_HTTP_Geek_b2fe7a_InfoQ写作社区
vConsole