Tagged Questions

Libpcap, a portable C/C++ library for network traffic capture. Unix-like systems implement pcap, whereas Windows use a port of libpcap - Winpcap. It is now developed by the same tcpdump.org group that develops tcpdump.

learn more… | top users | synonyms

9
votes
1answer
864 views

libpcap IP Packet Reassembly

I'm looking for a sample code for IP packet reassembly in C with libpcap*. Is IP packet defragmentation implemented in libpcap library officially? I've found this proposal : ...
6
votes
1answer
3k views

Is there any way to put Android WIFI (droid handset) into promiscuous monitoring mode?

For a Computer Science Information Warfare class a few years ago I wrote a python script that ran on libpcap promiscuous packet capture files to parse out facebook chat traffic (earlang tuples passed ...
5
votes
1answer
389 views

URL Sniffing in Python

Does anyone know how to write a live data sniffer in Python which extracts the originating IP address and the full URL that was being accessed? I have looked at pulling data from urlsnarf however IPv6 ...
4
votes
1answer
395 views

Deploying an app with root privileges

I have written a Cocoa app which uses libpcap to monitor network traffic. Since libpcap requires root privileges I was wondering what's the best way to give it root privileges (e.g. using Package ...
4
votes
4answers
2k views

how to debug application as root in eclipse in Ubuntu?

I'm programming application using libpcap. when I debug the application in normal mode, pcap cannot get the network device. it seems that I have to debug the application in root. How can I debug the ...
3
votes
4answers
90 views

How separate RTP packets from the rest

I got a pcap file with voip conversation, how i can separate RTP packets from the other packets? I can obtain sip packets, but I can't differenciate the RTP packets from the rest.
3
votes
2answers
675 views

Can I use pcap library for receiving ipv6 packets?

I am trying to convert hping3 to hping6. hping3 uses pcap library to receive ipv4 packets. But I need to receive ipv6 packets. Thanks adi
3
votes
1answer
731 views

How to write PCAP capture file header?

Without using libpcap I am trying to write a log file that adheres to the pcap file format (format). This file needs to be readable by WireShark. So far I've written this in C++: struct ...
3
votes
3answers
779 views

libpcap setfilter() function and packet loss

this is my first question here @stackoverflow. I'm writing a monitoring tool for some VoIP production servers, particularly a sniff tool that allows to capture all traffic (VoIP calls) that match a ...
3
votes
1answer
279 views

Listening on two devices at once with libpcap

I am trying to listen on two devices with libpcap but I still cant find out how to do the trick. I tried to set device to "any" but it isnt working. I am trying to write dhcp relay agent so i need to ...
2
votes
1answer
63 views

Using libpcap with Scala

What's the best way to use libpcap with Scala? I need to capture from live network devices, so it will most likely need a native binding. I've found a couple like JPcap and JNetPcap but nothing ...
2
votes
2answers
127 views

Does libpcap use raw sockets underneath them?

I was getting a bit confused on using of raw sockets and libcap. Can, anyone in simple point out advantages of using both. I read few links, but, its making me confused.
2
votes
0answers
131 views

Decode PCM audio data with g722 codec

I'm developing a call recorder for VoIP audio, the audio is encoded by using a g722 codec in a CISCO environment. Well, I have extracted the data from the RTPs frames and I have decoded this pcm data ...
2
votes
3answers
82 views

ctypes and passing a by reference to a function

I'm trying to use libpcap in python3 using ctypes. given the following function in C pcap_lookupnet(dev, &net, &mask, errbuf) in python I have the following pcap_lookupnet = ...
2
votes
1answer
546 views

pcap_loop and pcap_dispatch Difference

What exactly is the difference between pcap_loop and pcap_dispatch?
2
votes
2answers
760 views

How do i capture MAC address of Access points and hosts connected to it?

I know that i have to use the libpcap library to capture IEEE 802.11 frames to show their MAC addresses,for example my wireless adapter is in monitor mode, and only supports "802.11 plus radiotap ...
2
votes
2answers
407 views

preventing libpcap to capture the packets injected with pcap_inject()

currently thinking on a possibility to sniff at the same interface using only pcap and also inject the packets using pcap_inject. The thing can be solved easily using either: persistent checksum ...
2
votes
3answers
343 views

String search in a packet

Assume we capture packets with the C API of libpcap. Is it efficient to parse some payload strings with string search strstr() in line speed (e.g. Mbps/Gbps)? For example strstr(payload,"User-Agent"); ...
2
votes
4answers
712 views

Drop packet with libpcap

Is it possible to have libpcap remove a packet instead of just sniff it as it passes through? I'm wanting to intercept each packet and encapsulate it into a new packet along with measurement data, ...
2
votes
2answers
1k views

iptables and libpcap

i have rule set up to drop udp/tcp packets with matching strings. however, my program which captures packet using libpcap, is still able to see this packet. Why is this/, what should be the iptable ...
1
vote
4answers
46 views

Get uid of packet with libpcap

Is it possible to get the effective uid of a captured tcp packet with libpcap? In other words, can I use libpcap to get the user id of whomever created said packet?
1
vote
2answers
53 views

How can I open a pcap-ng file in C#

Up to now I have been using WinPcap to open pcap files in C#: [DllImport("wpcap.dll", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)] private extern static IntPtr ...
1
vote
1answer
89 views

python / dpkt: Find out if packet is a tcp packet or a udp packet ,

I have a python scripts that captures the packets on the ethernet using dpkt, but how do i differentiate between which packets are tcp and which ones are for udp. Eventually i would like to have a ...
1
vote
1answer
81 views

Processing wireless frames with pcap

I am working on a project that involves interacting with the data in 802.11 frames. I am using libpcap 1.0. I have written code from most of the tutorials on the website as well as online that i could ...
1
vote
1answer
89 views

How to allocate a memory to send a large pcap file (of size larger than available memory) with high performance using winpcap?

I have used the code from winpcap example to send pcap file(original code from winpcap documenation found at this link) It works fine to send a small pcap files but if I tried to send a large pcap ...
1
vote
1answer
93 views

Compile Error in using /usr/include/net/if.h

I'm trying to compile existing source code for a network sniffer on my Mac Lion. I installed libpcap. The source includes a header file /usr/include/net/if.h, which is throwing compilation errors as ...
1
vote
0answers
105 views

Libnet TCP checksum error

I am trying to build a TCP packet using libnet library. I use '0' for autocomputation of checksum value in the libnet_build_tcp function. However, it seems the checksum ignores the pseudo-header when ...
1
vote
1answer
149 views

pcap_dispatch - callback processing questions

I am writing fairly simply pcap "live" capture engine, however the packet processing callback implementation for pcap_dispatch should take relatively long time for processing. Does pcap run every ...
1
vote
1answer
156 views

struct pcap_pkthdr len always == zero

Without copying all of the source in here, I am hitting a pcap_callback function from pcap_dispatch. The caplen seems to show the correct length (being that it is always something) but the len always ...
1
vote
1answer
63 views

Extract certain bytes from iscsi packets programatically

I've been searching for a way to do the following with no avail. I was hoping someone here could point me in the right direction. The problem is this: I have a ton of wireshark traces containing ...
1
vote
1answer
111 views

Why libpcap captures incomplete packets?

I'm running "tcpdump port 1025 -w out.pcap -s 4000" and all packets sent from localhost I see "XXX bytes on wire, 54 bytes captured" (only ethernet and tcp headers are captured, data is not captured). ...
1
vote
1answer
84 views

AF_PACKET equivalent under Mac OS X (Darwin)

I am trying to compile a C program on Mac OS X that uses AF_PACKET sockets and libpcap, what is the equivalent in OS X?
1
vote
1answer
167 views

C libpcap: How do I see what's in the header/packet?

I have the following C code which is to be used for analysing data on port 80: #include <stdio.h> #include <stdlib.h> #include <pcap.h> #include <event.h> void ...
1
vote
0answers
351 views

Android NDK: Trying to port JnetPcap

I found a traffic monitoring application for Android, Shark: http://sourceforge.net/projects/prueba-android/ which is based on JnetPcap and has a file with all the source files and the appropriate ...
1
vote
1answer
117 views

How do you Identify the interface of a packet while listening to network traffic on all devices?

I am writing a python program that needs to listening to traffic on all networking devices and identify packets based on their incoming interface. To listen on all interfaces I started my capture ...
1
vote
2answers
184 views

c++ library for parsing packets with winpcap

is there a c++ opensource library for parsing capturing packets with winpcap specificly the tcp header and data ?
1
vote
2answers
531 views

tcpdump on monitor-mode interface - nothing captured

I've been using tcpdump (version 4.1.1) to attempt to capture wireless frames from a monitor mode interface set up by airmon-ng. I say "attempt" because so far nothing has been happening. It's very ...
1
vote
1answer
169 views

WinPcap - LibPcap - packet_handler notification

I am using libpcap (Windows Packet Capturing Library) in C. I was wondering if i could be notified before the packet_handler function is called. Right now packet_handler is called everytime you ...
1
vote
3answers
163 views

Measuring upload/download rates with libpcap

I'm using libpcap (and winpcap on Windows) in a C application to monitor network traffic. I need to differentiate between upload and download traffic on each network adapter, to produce connection ...
1
vote
1answer
127 views

Do the functions in libpcap and winpcap have identical names?

Do the functions in libpcap and winpcap have identical names? If not, what names are different, or are the majority of them different? Also, can libpcap++ be used for winpcap?
1
vote
1answer
291 views

Sending packet using libpcap speed limitation

I wrote a program that captures Ethernet packets from some NIC (i.e eth0) at high speed (about 1Gbps) and forward traffic using pcap_sendpacket() to another NIC (i.e eth1). While the forwarder ...
1
vote
1answer
144 views

Ruby/C/Makefile, what is the default pcap.h file that is used in -lpcap/#include <pcap.h>

How can I determine what pcap.h file is being included in a C source that is being compiled/installed via a Makefile? Specifically, it is a Ruby library (pcaprub) that is being installed via: ruby ...
1
vote
1answer
220 views

Python Library for packet creation//manipulation

I am currently working on libpcap-python, I found it does not help(I don't know how) in modifying packet data. Is there any library which can be used to create network packet?
1
vote
2answers
611 views

Getting TCP options (beyond tcphdr->doff) out of * char eth/ip/tcp packer representation

Playing around with http://www.tcpdump.org/sniffex.c to get packet options. void payload (char *data) { // data contains full copied packet source without ethernet header. char *ptr = NULL; //ptr = ...
1
vote
1answer
215 views

Converting a C struct to FFI::Struct

I am having difficulty setting up a struct from the pcap library in FFI. Struct: struct pcap_if { struct pcap_if *next; char *name; char *description; struct pcap_addr *addresses; ...
1
vote
2answers
148 views

libpcap inter-arrival times and scheduler

I am doing research about network traffic characterization. While processing collected data (captured by tcpdump and saved to a database), I stumbled over the weird phenomenon with packet (or flow) ...
1
vote
1answer
531 views

jNetPcap vs Jpcap

wondering any of you can give me a bit of comments + insights please. In term of performance, which one should I use, jNetPcap or Jpcap? Thanks!
1
vote
1answer
683 views

Can libpcap be compiled for iPhone/armv6?

Trying to compile a basic program which uses pcap.h. I've set up the environment on my Mac OSX box which uses the iPhone 3.1.3 SDK for an iPhone 3GS. I've also installed libpcap to ~/libpcap so I can ...
1
vote
2answers
1k views

Python and libpcap. find source mac address of packet

I'm writing python program to build mac-address cache using pcap. But pcap module for python has no good documentation. I have found this page http://pylibpcap.sourceforge.net/ with code example and ...
1
vote
3answers
3k views

Reconstructing data from PCAP sniff

I am trying to sniff HTTP data through libpcap and get all the http contents (header+payload) after processing the TCP payload. As per my discussion at ...

1 2 3