确定网络数据包结构
该在线社区的成员有一个旧程序可供所有人使用,但他已不再存在并且不再支持该程序。我想通过稍微扩展它的功能来帮助社区。为此,我需要知道如何从它发送数据。如何捕获它发送的网络流量并确定它发送的内容?
There is an old program a member of this online community made for everyone to use, but he is no longer around and no longer supports it. I wanted to help the community by extending it's features somewhat. To do that, I need to know how data is sent from it. How can I capture the network traffic it sends, and determine what it's sending?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WireShark 是您的朋友。适用于 UNIX 和 Windows。
Wireshark 用户指南
@Kerrek SB 的提示:使用
tcpdump -s0 -w /tmp/data -i eth3
左右创建转储文件,稍后以非特权用户身份使用 Wireshark 对其进行分析。WireShark is your friend. Available for UNIX and Windows.
Wireshark User's Guide
@Kerrek SB's Tip: use
tcpdump -s0 -w /tmp/data -i eth3
or so to create the dump file, and analyze it with Wireshark later as an unprivileged user.