tcpdump 抓取http的get和post请求

There are tcpdump filters for HTTP GET & HTTP POST (or for both plus message body):

Run man tcpdump | less -Ip examples to see some examples
Here’s a tcpdump filter for HTTP GET:
sudo tcpdump -s 0 -A ‘tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420’

Here’s a tcpdump filter for HTTP POST:
sudo tcpdump -s 0 -A ‘tcp dst port 80 and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)’

Monitor HTTP traffic including request and response headers and message body (source):
tcpdump -A -s 0 ‘tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)’ tcpdump -X -s 0 ‘tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)’

你可能感兴趣的:(网络)