使用 Perl 将 PCAP 文件解析为 XML 文件

发布于 2024-11-14 20:44:24 字数 223 浏览 3 评论 0原文

我正在尝试让 Perl 读取脱机 pcap 文件并将输出保存到 XML 文件中,以便我可以在 PHP 中使用它。

我不能使用 PHP,因为它不是我的服务器,但我可以使用 Perl。所以我的目标是将 PCAP 文件转换为 XML,这样我就可以享受它的乐趣。

我不知道从哪里开始,并查看了 Perl Net::Pcap,但我只是不明白这种语言。

关于我应该做什么有什么想法吗? 谢谢 保罗

I'm trying to get Perl to read an offline pcap file and save the output into XML file so I can work with it in PHP.

I can't use PHP because its not my server but I can Perl. So my aim is to convert the PCAP file into XML so I have fun with it.

I have no idea where to start and have looked at the Perl Net::Pcap but I just don't understand the language.

Any ideas on what I should do?
Thank-you
Paul

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

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

发布评论

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

评论(1

迟月 2024-11-21 20:44:24

使用 Net::Pcap 是一个不错的主意,尽管弄清楚您想要写入捕获的格式似乎并不那么容易。我最喜欢的解决方案是使用 tshark(wireshark 的命令行版本),如下所示:

tshark -r $dmp_filename -Tpsml 

这将为您提供 XML 格式的输出 标准格式

当然,如果你没有 tshark,那就没什么帮助了......

Using Net::Pcap is a decent idea, although figuring out the format you'd want to write out the capture in doesn't seem all that easy. My favourite solution would be to use tshark (the command line version of wireshark) like so:

tshark -r $dmp_filename -Tpsml 

This would give you the output in a XML standard format.

Of course if you don't have tshark, not very helpful...

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