且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

发送/接收数据

更新时间:2022-11-28 12:04:27

如果您正在谈论谁发送HTTP有效负载,您可以添加PayloadLength列,以便查看更大的有效负载的发送位置。 分析网格中还有一个名为TCP深度数据包分析的布局,其中添加了该列等。

If you are talking about who is sending HTTP payloads, you can add the PayloadLength column so see where larger payloads are being sent.  There's also a Layout in the Analysis Grid called TCP Deep Packet Analysis which adds that column, among others.

对于HTTP,它几乎总是发送信息的服务器,您可以告诉它通过查看tcp.SourcePort == 80的消息。 请记住,由于Message Analyzer
如何简化流量,因此这样的过滤器不会向您显示单向流量。 这种简化也为我们提供了上面的PayloadLength。 我有一个

最近的视频更深入
,如果你是有兴趣深入潜水。

For HTTP, it's almost always the Server that is sending the information, which you can tell by looking at messages where the tcp.SourcePort==80.  Just keep in mind that a filter like this won't show you one direction traffic due to how Message Analyzer simplifies the traffic.  This simplification also provides us the PayloadLength above.  I have a recent video which goes deeper, if you are interested in diving deeper.

谢谢,

保罗