我需要使用TShark嗅探器获得HTTP请求的完整描述。我的意思是像Wireshark的GUI,你可以得到:
现在我可以通过以下方式解析HTTP:
tshark -i eth0 -f 'dst host xxx.xxx.xxx.xxx' -d tcp.port=80,http
它打印的内容如下:
139389.228821 x.x.x.x -> y.y.y.y HTTP GET /test.html HTTP/1.1
或者我可以打印cookie(或所有cookie?),例如:
tshark -i eth0 -f 'dst host xxx.xxx.xxx.xxx' -T fields -e http.cookie
但我想要原始数据的完整HTTP请求描述。有可能吗?