I would like to know how can I intercept packets sent by a certain application and then to check what those packets contain? I need some advice what to do because I never did that I want to learn for myself .
closed as not a real question by Ben, Jean-François Corbett, ρяσѕρєя K, casperOne♦ Sep 17 '12 at 13:33
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.
Pcap.NetPcap.Net is a .NET wrapper for WinPcap written in C++/CLI and C#. It Features almost all WinPcap features and includes a packet interpretation framework. SharpPcapSharpPcap is a cross-platform packet capture framework for the .NET environment, based on the famous pcap / WinPcap libraries. It provides an API for capturing, injecting, analyzing and building packets using any .NET language such as C# and VB.NET. Comparision of Pcap.Net and SharpPcapWiresharkIt is used for network troubleshooting, analysis, software and communications protocol development, and education. And I think it is the most versatile packet sniffer I used till now. FiddlerFiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet. Fiddler allows you to inspect traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language. Recently Fiddler has been overtook by Telerik. But it is still free AFAIK. |
|||
|
|
|
Some example of c# sniffer socket creation.
|
||||
|
|
|
You can use Fiddler to see HTTP traffic http://www.fiddler2.com/fiddler2/. Alternatively Wireshark http://www.wireshark.org/ for more advanced stuff Summary of Packet Analyzers here http://en.wikipedia.org/wiki/Packet_analyzer More details of what you are trying to achieve would help us advise. |
|||
|
|
PACKETSyou are refering html, tcp or else ? – Harsh Baid Sep 15 '12 at 13:08