SharpPcap project home.
6
votes
3answers
842 views
How do I determine if a packet is RTP/RTCP?
I am using SharpPCap which is built on WinPCap to capture UDP traffic. My end goal is to capture the audio data from H.323 and save those phone conversations as WAV files. But first thing is first - I ...
3
votes
2answers
224 views
How to get data from TCPPacket using SharpPcap?
I need small sniffer for my report so I went with C# and SharpPcap.
packet = Packet.ParsePacket(rawCapture.LinkLayerType, rawCapture.Data);
tcpPacket = TcpPacket.GetEncapsulated(packet);
I have raw ...
3
votes
2answers
2k views
c# - how to sniff packets in an app without relying on WinPCap?
BACKGROUND: I now understand how to write a C# application that can monitor packets going in/out of the network card on the PC the application is running on. The approach I know relies on ...
2
votes
1answer
121 views
In SharpPCap How do I find the IP Address of the Device?
I am using a WinPCapDevice and have already initialized it. I just want to be able to get the IP from that device and I cannot find anywhere how to extract the IP address of the Device. If there isnt ...
2
votes
1answer
110 views
Detect HTTPS using SharpPCap
I am using SharpPCap to filter packets. Does anyone know how to detect if a packet is for a secured http connection?
2
votes
2answers
602 views
C# SharpPcap issues
I've been very interested in using SharpPcap, but so far it's not been going well.
The main problem is the following code:
private static void device_OnPacketArrival(object sender, ...
2
votes
2answers
578 views
SharpPcap - A Packet Capture problem to extact information from the packet
I'm using SharpPcap to capture packets.
I'm trying to get Traffic Class value and I'm using udp.ipv6.TrafficClass.ToString().
the problem that I'm getting this exception:
Object reference not set ...
2
votes
4answers
2k views
How to capture HTTP packet with SharpPcap
I would like to capture all incoming HTTP packets of my machine. To do that I'm using SharpPcap which is a WinPcap wrapper.
SharpPcap works very well but it captures TCP packets and this is too low ...
1
vote
1answer
50 views
Wrapper for packets generation
Here's the task:
I need to generate packet sending by these protocols:
TCP
UDP
ICMP
IGMP
GGP
GRE
PUP
Raw IP
RSVP
Is there any library (or wrapper) to resolve this problem more easily?
Actually I ...
1
vote
1answer
65 views
Send an IP packet with Packet.Net and SharpPcap but generate ethernet frame
I'm trying to send a raw UDP packet with Packet.Net but the device.SendPacket() function only seems to accept link level PDUs which means I have to figure out the source and destination MAC addresses ...
1
vote
2answers
270 views
Tcp Session Reconstruction with Winpcap
Im trying to reconstruct tcp sessions from my pcap files which have network packets captured using winpcap. I have a project which splits the packets to sessions. So far i can read from pcap files and ...
1
vote
2answers
369 views
How to send an ARP Packet through C# with WinPcap
I want to send ARP packet for "ARP Poison Routing" through C#. I am use SharpPcap(for use the winpcap). How to do this with SharpPcap or without SparpPcap (with other library) ?
1
vote
2answers
509 views
Cannot convert from SharpPcap.RawCapture to PacketDotNet.Packet
I've been following the guide over at http://www.codeproject.com/KB/IP/sharppcap.aspx for implementing a simple packet sniffer to automate authentications for me, I've managed to get to the Filtering ...
1
vote
2answers
375 views
Pcap.net vs Sharppcap
I just want to listen a network device, capture packets and write the packets to a dummy file. Also i need to filter packets while listening so ill only write packets which passes the filter. I need ...
1
vote
1answer
301 views
Capturing DNS responses with PCap.Net?
Q1 - Is it possible to capture DNS request/responses with the library?
Q2 - If yes, once I have the packet does anyone have any sample code
that shows how I could extract the fields from the DNS ...
1
vote
1answer
2k views
IP address spoofing using SharpPcap on C#
I will use SharpPcap framework to make my spoofing program, so I need to edit my machine's IP address of the packet with another IP address on the source address field.
I found some example on ...
1
vote
2answers
1k views
C# SharpPcap Cross-thread operation not valid
Hi I'm trying to convert packet capturing in Example3 in SharpPcap new version SharpPcap-2.2.0rc1.src from Console Application to Windows Forms Application.
I'm facing a problem when I tried to add ...
0
votes
1answer
54 views
Extract HTTP header information using Packet.Net
I would like to extract the HTTP header information using Packet.Net. I am using SharpPcap to capture the packet and need to access the User-Agent field in the TCP packet. If I understand correctly ...
0
votes
1answer
103 views
using SharpPcap with usp 3G modem
I have learned SharpPcap to capturing packet from a particular network interface. The following code is used to get all network interfaces on local machine:
foreach (PcapDevice dev in ...
0
votes
1answer
81 views
Sharp Pcap and multiple ICaptureDevices in c#.NET
im having a nightmare of a time trying to get sharp Pcap to send packets happily via multiple instances of ICaptureDevice. The problem is that If i use more than one instance of ICaptureDevice any ...
0
votes
1answer
51 views
SharpPcap OnPcapStatistics event never fires?
I am trying to get SharpPcap Statistics to work, but the OnPcapStatistics event never fires.
Here's the code: SharpPcap Example 11: statistics
Code project article: SharpPcap: Statistics
Does ...
0
votes
2answers
256 views
SharpPcap/Wireshark Capture Filter for facebook.com
Sorry for my English.
I want to sniff the http packet from only facebook.com with SharpPcap on C#. Facebook is using multi ip. Facebook ip is changing everything. How to setup capture filter for ...
0
votes
1answer
201 views
Howto - setup a filter in sharppcap?
i'm using the sharppcap library and try to setup a filter.
My goal is to setup a filter that only add packets from one ip adress and not the whole amount of data of any ip and tcp packets. i had ...
0
votes
2answers
86 views
List devices by IPs?
How could I list the devices by IP instead of name ?
I am aware that I can get the device name and description but since I have many devices installed it would be rather easier if I could get it by ...
0
votes
0answers
64 views
identifying tcp/ip security and tunneling protocols using sharpPcap in C#
i want to write a program in c# that reads .pcap files and can identify packets using security and tunneling protocols (eg AH,TSL) of tcp/ip . can i use sharpPcap? if not, can someone please suggest ...
0
votes
1answer
110 views
The second LivePCapDevice in SharpPCap doesn't work?
I'm using the lib SharpPCap to capture packets, then analyse them to find the flv video address in PacketArrivalEventHandler function. The main part of class is like this:
class addrdetector
{
...
0
votes
2answers
331 views
SharpPcap Encoding.UTF8.GetBytes
Does someone know which is the right way to get the actual text in these bytes?
I do something wrong here.
And another question: is utf-8 the most generic encoding, that will show most of the chars ...
0
votes
2answers
446 views
how to check for BackgroundWorker.CancellationPending when my thread has called another?
How should I check for a CancellationPending within a BackgroundWorker DoWork method, when within this method I call off to a Pcap.Net packet capture routine, which responses via a callback. The two ...
0
votes
1answer
187 views
Why packets injected with libpcap are duplicated?
I'm using sharppcap in order to send packets as part of a monitoring system. Usually it works well but I've encountered the strangest bug on a hosted vista machine and I would like your help.
On that ...
0
votes
2answers
592 views
Interpreting the Packets using sharppcap
Is it possible to interpret every coming packets using sharppcap?
0
votes
4answers
388 views
determining HTTP packets
Greeting,
how is possible to determine from captured packets using sharppcap if the packet is http packet or not?
and can we determine frpm TCP packets if the packet is HTTP or not?
0
votes
2answers
907 views
Howto convert to string and read data from TCP packet
I used sharppcap to capture TCP packets. Now i wanna reconstruct HTTP packet from TCP packets but i don't know how. I read somewhere i can find start of HTTP packet in TCP data... i tried to convert ...
0
votes
3answers
941 views
SharpPcap issue
This is my first time to use SharpPcap library.
I created new project with VC# 2008 and I added SharpPcap as a reference to my project.
I post a sample code to get interface of my pc but I'm ...
-3
votes
1answer
90 views
How to include sharppcap library into Visual Studio?
Sorry for the noob question. I don't really know how to make sharppcap library working in my project. I'm using Visual Studio 2010.