vote up 1 vote down star
2

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.

flag

80% accept rate
I am using the MC VC++ on a Windows platform. – Mike Curry Dec 5 '08 at 22:19

3 Answers

vote up 13 vote down check

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.

Most modern Unix-like distributions include libpcap out of the box, in which case you could take a look at this very simple example: http://www.tcpdump.org/pcap.htm

If you're using Windows, you're more or less on your own, although WinPcap programming is extremely similar to libpcap programming (unsurprisingly, since it's a libpcap port to Win32.) The SDK can be found here: http://www.winpcap.org/devel.htm

At any rate, no matter the operating system, you will 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.

link|flag
Nitpick: WinPcap offers the option of starting as a service so that non-admins can capture packets. – Josh Kelley Dec 12 '08 at 15:52
I know. However, doing this is a such monumentally bad idea, security-wise, that I'd rather not publicize it more. – Mihai Limbasan Dec 12 '08 at 16:26
vote up 2 vote down

You'll need to say something about your platform, as this is a platform rather than a language thing.

But assuming you're on something common, look into pcap or winpcap.

link|flag
vote up 0 vote down

Microsoft Network Monitor has a packet capture and analysis API, see the netmon blog for some basic info.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.