Hello everyone, I would like to know how to read a pcap file in c#. I don't need something which will read it and parse it, because I want to parse it by myself. I just need a hand to have some input before my parse part. I hope that was clear enough. Thank you :) asked 31 May '15, 03:06 superithy |
3 Answers:
You mean you want some information about how a pcap file is structured? See this Wiki Page: answered 31 May '15, 04:29 Jasper ♦♦ |
Even though you said you didn't want parser help, you still might look at pcap.net. Lots of useful stuff for C# folks there when dealing with pcap files amongst other things. answered 31 May '15, 07:20 grahamb ♦ And (It also means that, on UN*Xes with newer libpcap and with some form of .NET environment installed, it will also be able to read many pcap-ng files; currently, WinPcap can't read pcap-ng files, but that will probably be possible in a future WinPcap release, once it's based on a newer version of libpcap.) (31 May '15, 14:12) Guy Harris ♦♦ |
Please try SharpPcap
Regards answered 01 Jun '15, 04:28 Kurt Knochner ♦ |
I'll read that.
Thank you very much ! :)