如何使用python计算pcap文件中tcp重传的次数?

发布于 2024-11-16 02:05:33 字数 61 浏览 1 评论 0原文

我有一些 pcap 文件,我想计算每个流的 tcp 重传次数。有谁知道我可以利用这个 python 模块吗?

I have some pcap files I want to count the number of tcp retransmissions on a per-flow basis. Does anyone knows of a python module I could leverage for this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

音盲 2024-11-23 02:05:33

我不知道有什么可以为您提供帮助,但有几种方法可以在 Python 中打开 pcap 文件。我喜欢 scapy,http://www.secdev.org/projects/scapy/

有还有 pypcap http://code.google.com/p/pypcap/ ,而我'我从来没有使用过它, dirtybags.net 的实现看起来很有趣。它不使用 pcap 库,这很酷。 http://dirtbags.net/py-pcap.html

I don't know of something that will do the count for you, but there are a couple ways to open pcap files in Python. I like scapy, http://www.secdev.org/projects/scapy/

there is also pypcap http://code.google.com/p/pypcap/ and while i've never used it, the dirtbags.net implementation looks interesting. It does not use the pcap libs which is kind of cool. http://dirtbags.net/py-pcap.html

┈┾☆殇 2024-11-23 02:05:33

信誉点不足,无法将此作为评论发布,但 tshark 支持导出使用 -T 选项(使用 pdmlpsml 参数)将 pcap 文件转换为 xml:

tshark -T pdml -r {infile} >{outfile}

如果您拥有 xml 文件,则可以使用众多之一轻松解析它们那里有可用的图书馆。

Not enough reputation points to post this as a comment, but tshark supports exporting of pcap files to xml using the -T option (with either the pdml or psml argument):

tshark -T pdml -r {infile} >{outfile}

One you have the xml files, you can easily parse them with one of the many libraries available out there.

我不在是我 2024-11-23 02:05:33

您可以使用 python 子进程来调用 tshark。 tshark 是 wireshark 的控制台版本。 tshark/wireshark 有许多选项来过滤和分析 pcap。基于每个流的重传计数可以这样归档:

tshark -T fields -e tcp.stream -e frame.number -r cap.pcapng 'tcp.analysis.retransmission'

You could use a python subprocess to call tshark. tshark is the console version of wireshark. tshark/wireshark have many options to filter and analyse pcaps. Counting retransmission on a per flow basis could be archived like this:

tshark -T fields -e tcp.stream -e frame.number -r cap.pcapng 'tcp.analysis.retransmission'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文