Could anyone suggest a good packet sniffer class for c++? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:48:54Z http://stackoverflow.com/feeds/question/345305 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/345305/could-anyone-suggest-a-good-packet-sniffer-class-for-c 1 Could anyone suggest a good packet sniffer class for c++? Mike Curry 2008-12-05T21:55:59Z 2009-04-12T17:03:10Z <p>Could anyone suggest a good packet sniffer class for c++? Looking for a easy insertable class I can use in my c++ program, nothing complicated.</p> http://stackoverflow.com/questions/345305/could-anyone-suggest-a-good-packet-sniffer-class-for-c/345312#345312 2 Answer by Will Dean for Could anyone suggest a good packet sniffer class for c++? Will Dean 2008-12-05T21:58:28Z 2008-12-05T21:58:28Z <p>You'll need to say something about your platform, as this is a platform rather than a language thing.</p> <p>But assuming you're on something common, look into pcap or winpcap.</p> http://stackoverflow.com/questions/345305/could-anyone-suggest-a-good-packet-sniffer-class-for-c/345339#345339 13 Answer by Mihai Limbasan for Could anyone suggest a good packet sniffer class for c++? Mihai Limbasan 2008-12-05T22:09:50Z 2008-12-05T22:09:50Z <p>You will never be able to intercept network traffic just by inserting a class into your project. Packet capture functionality requires kernel mode support, hence you will at the very least need to have your application require or install libpcap/WinPcap, as Will Dean pointed out.</p> <p>Most modern Unix-like distributions include libpcap out of the box, in which case you could take a look at this very simple example: <a href="http://www.tcpdump.org/pcap.htm" rel="nofollow">http://www.tcpdump.org/pcap.htm</a></p> <p>If you're using Windows, you're more or less on your own, although <a href="http://www.winpcap.org/" rel="nofollow">WinPcap</a> programming is extremely similar to libpcap programming (unsurprisingly, since it's a libpcap port to Win32.) The SDK can be found here: <a href="http://www.winpcap.org/devel.htm" rel="nofollow">http://www.winpcap.org/devel.htm</a></p> <p>At any rate, no matter the operating system, you <em>will</em> need root / Administrator access to actually perform a capture. Just using the library to replay or analyze precaptured data doesn't require any special privilege, of course.</p> http://stackoverflow.com/questions/345305/could-anyone-suggest-a-good-packet-sniffer-class-for-c/345397#345397 0 Answer by James Peach for Could anyone suggest a good packet sniffer class for c++? James Peach 2008-12-05T22:30:55Z 2008-12-05T22:30:55Z <p>Microsoft Network Monitor has a packet capture and analysis API, see <a href="http://blogs.technet.com/netmon/archive/2008/10/29/intro-to-the-network-monitor-api.aspx" rel="nofollow">the netmon blog</a> for some basic info.</p>