开发者

Parsing PCAP file into XML file using Perl

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


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...

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜