使用tcpdump
监控http
流量,具体内容包括:http request
,http response
,http headers
以及http message body
.
监控本机http
流量
tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
监控指定源地址的http
流量
tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
监控本地至本地的http
流量
tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' -i lo
仅监控http request
将上述执行语句中的'tcp port 80
修改为tcp dst port 80
即可。
捕获本地至本地的所有流量
tcpdump -i lo
上述代码均是监控80端口的http
流量,如果需要监控指定端口,将80替换为指定端口即可实现相应功能。