确定网络数据包结构

发布于 2024-12-26 05:22:07 字数 103 浏览 0 评论 0原文

该在线社区的成员有一个旧程序可供所有人使用,但他已不再存在并且不再支持该程序。我想通过稍微扩展它的功能来帮助社区。为此,我需要知道如何从它发送数据。如何捕获它发送的网络流量并确定它发送的内容?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方的巷 2025-01-02 05:22:08

WireShark 是您的朋友。适用于 UNIX 和 Windows。

Wireshark 是一个网络数据包分析器。网络数据包分析器将
尝试捕获网络数据包并尝试显示该数据包数据
尽可能详细。

Wireshark 用户指南

@Kerrek SB 的提示:使用 tcpdump -s0 -w /tmp/data -i eth3 左右创建转储文件,稍后以非特权用户身份使用 Wireshark 对其进行分析。

WireShark is your friend. Available for UNIX and Windows.

Wireshark is a network packet analyzer. A network packet analyzer will
try to capture network packets and tries to display that packet data
as detailed as possible.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文