Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm wondering about the principles of a packet sniffer. how do they catch the packets of other application?

I have been thinking about this so long. And i got one theory. Is that related to the workings of a proxy server? When some special API is once used, all the local applications send their packets to the specified ip instead of their original. And the packet sniffer receives and copys, and finally sends them back to the original destination. Is that right?

Can you explain how a packet sniffer works? Thank you for your help in advance.

share|improve this question
Most packet sniffers are written using Pcap library (LibPcap or WinPcap). You can search in Codeproject.com for tutorials. – Saleh Omar Jan 13 at 11:06

closed as not a real question by thkala, WhozCraig, Frank, M42, talonmies Jan 13 at 22:02

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 7 down vote accepted

Network interfaces (i.e. hardware network adapter cards) receive all traffic on the wire irrespective of whether it is addressed to them or not.

After receiving a frame, the driver checks the recipient's MAC address in the frame header and compares it to the MAC of the interface. If the addresses match then the frame is forwarded to the OS for consumption; if not, it is discarded.

Interfaces also provide the option of being put into promiscuous mode, in which all frames are forwarded to the OS. That is what packet sniffers do: they send a command to the driver that puts the card in promiscuous mode, and can then read all traffic that physically arrives from the network no matter who it is addressed to.

Of course promiscuous mode is not a guarantee that you will receive all traffic on the network; network topology can easily prevent traffic addressed to others from ever reaching your system in the first place (e.g. that's what switches typically do).

share|improve this answer
Wow! Thanks a million! It really helped! – bis0317 Jan 13 at 13:05

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