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.
1
vote
0answers
15 views
TCP/IP statistics using libpcap
I need to monitor TCP packet statistics on Linux/Windows using libpcap (WinpCap).
Specifically, I have been instructed to research the possibility of monitoring TCP traffic on a machine, and ...
0
votes
1answer
13 views
libpcap - packet ip header length is zero bytes with loopback tcp requests
I am trying to view TCP payload information using libpcap. To do this I need to locate the payload's position in memory. I am using this Programming With Pcap guide to figure out the location of the ...
0
votes
0answers
9 views
Calculating HTTP length in different HTTP flow chart scenarios
I have been asked to calculate total bytes of each HTTP response&request couple .
Request message is small and most probably not get fragmented, will come in one packet .
But my problem is with ...
0
votes
0answers
33 views
converting .pcap files into java using JNetStream. Should be able to detect multiple headers for example IP over IP
I am trying to convert .pcap files acquired from wireshark into text files using java program. I have searched but most of the results show the decoding using JNetPcap however I need it using ...
0
votes
0answers
32 views
libpcap can't capture IP fragments
I want to capture UDP packets which are destined to a local port, the filtering expression is like udp port 20000. I notice if there are IP fragmentation on a UDP packet, libpcap can only capture the ...
1
vote
1answer
25 views
pcap_loop with filter does not capture any packet
I encounter a problem with the pcap filter. Here is part of the code:
#include <pcap.h>
#include <stdio.h>
void pcap_fatal(const char *failed_in, const char *errbuf) {
printf("Fatal ...
0
votes
1answer
97 views
Parsing WiFi Packets (libpcap)
I've been working on a way to have an OpenWRT router log WiFi probe requests to a MySQL db (it stores MAC address and RSSI info for each probe request packet along with other, router-specific data).
...
0
votes
0answers
19 views
Compiling libpcap in linux without memory-mapped support
pcap in linux is dropping packets, and it appears related to shared memory-mapping as addressed here http://stackoverflow.com/a/11660759/1794758.
However, the links on that answer are down so I ...
0
votes
1answer
48 views
Traceroute and packet capture
The following code is required to capture the route taken by a packet as it moves from the local router to destination router. It should print all the intermediate routers and its ip addresses. The ...
1
vote
1answer
29 views
how to check packet availability in libpcap
I use libpcap to capture packets, and I need to put the packets into a FIFO queue as soon as a packet is available. But the FIFO queue is shared by 2 threads, one thread call pcap_next() and put ...
1
vote
1answer
137 views
parse IP and TCP header (especially common tcp header options)of packets captured by libpcap
I want to use libpcap to capture IP packet, and the I want to parse the IP header and tcp header.
`
there are IP header and TCP header structures in <netinet/ip.h> and <netinet/tcp.h>
IP ...
0
votes
1answer
88 views
libpcap Radiotap header extraction
I've got some code that is using the functions ieee80211_radiotap_iterator_init() and ieee80211_radiotap_iterator_next() from radiotap-parser.c,
I'm not sure what I'm doing incorrectly, perhaps ...
0
votes
0answers
40 views
oRTP for RTP session capture - feeding captured RTP packets to oRTP
I'd like to use the oRTP library (from the linphone project) for capturing VOIP call audio. I'm capturing RTP packets using libpcap/winpcap library and would like to forward these packets to oRTP for ...
0
votes
0answers
27 views
BPF filter CPU usage
The OS I am using is Ubuntu 12.04 64bit. My application uses libpcap with BPF filter to filter out certain kind of traffic. I would like to find out how much load the BPF filtering itself places on ...
0
votes
1answer
62 views
libpcap on iOS ,the pcap_next() always return null
I am a beginner of iOS and my design of graduation is to develope a app that can capture packets on iOS.
I use the libpcap library .My iPhone is JB and I can already run app as root. More ...
0
votes
1answer
85 views
Packet sniffering by jpcap
I am sniffering packets on ethernet (eth0) in java with the help of jpcap library... So, In my project I have a JpcapCaptor ...
//Open an interface with openDevice(NetworkInterface intrface, int ...
1
vote
0answers
83 views
analyze tcp payload of each tcp packet in `pcap` files
I have a lot of pcap files
in each pcap file there are some tcp packets
I want to the following steps:
1 filter the pcap file to get expected tcp packets(if with tshark, the filter is like ...
0
votes
0answers
24 views
Reason: unsafe use of @loader_path
My intention is to capture packets using libpcap, so I downloaded libpcap and compiled for arnmv7. When I use the dylib file it shows :Reason: unsafe use of @loader_path. How to resolve it? I ...
0
votes
0answers
17 views
if a lot of pcap handler is created in a program, is libpcap resource consuming or efficient?
I have a program which may create a lot of pcap handlers
each of which uses different capture filter
I'm afraid they are very resource consuming and so the program/machine may not support them
are ...
0
votes
1answer
39 views
blocking pcap and multiple I/O `select `
I want to use pcap to capture packets
and then send the captured packets to another host
my source code snippets are like:
for(;;){
pcap_packet = ...
0
votes
0answers
20 views
how to use the libpcap as normal user?
As we know ,many of the pcap functions require root privileges,but when as root ,the iOS simulator will hang the "attaching to myproname".what I should do?
0
votes
1answer
67 views
How to print PCAPNG metadata in Python?
I'm attempting my first Python program and could use a little help.
My script on github
I need a way to print the metadata in a PCAPNG file. I want to print the
application and version, OS, and ...
0
votes
2answers
66 views
libpcap not receiving in real time, seems to be buffering packets
So I'm working with a device where I need to send and receive raw ethernet frames. It's a wireless radio and it uses ethernet to send status messages to its host. The protocol it uses is actually IPX, ...
0
votes
2answers
53 views
usng libpcap to implement tcp listen()
I have a research work which requires tcp modification
and I want to implement my version of TCP listen() function
my idea is to use libpcap to capture all TCP SYN packet from a specific port
and then ...
0
votes
1answer
155 views
capture/get TCP packets with IP/TCP header in a multiple-process program
I'm writing a TCP proxy server program, it has code some snippets like:
// proxy server listen, waiting for incoming tcp requests
listen(listenfd, 1024);
while(1) {
connfd = accept(listenfd, (struct ...
0
votes
0answers
51 views
sharing libpcap captured packets in many child process
I'm writing a TCP server program
and I want to use libpcap to capture packets with ACK flag set for EACH INCOMING TCP connection (filter_exp is like port 54000 and tcp[tcpflags] & (tcp-ack) != 0)
...
0
votes
0answers
16 views
Calculate delay by network analysis application
I am developing a small tool using libpcap, which analyse the individual network packets. I want to calculate the delay caused by this analysis for each packet.
So, is it safe enough to assume that ...
0
votes
1answer
24 views
Compiler Warning libpcap
Having followed the examples http://www.tcpdump.org/pcap.htm, and exploring the documentation, I can't see what I have done wrong with the following code
// main.c
void got_packet(u_char *args, ...
0
votes
0answers
36 views
Get encryption type for wlan with tcpdump
How can I get the actual encryption type sent in Beacons from tcpdump? I have searched the manpage entry, Google, and website for tcpdump and pcap to no avail. I have the snaplen set to the highest ...
0
votes
0answers
55 views
Pcap_loop returns an error when too much packets arrive
I am currently working on a program that grabs packets incoming on an interface and does several operations to process them.
The problem is, there are a lot of packets coming and therefore I got the ...
0
votes
1answer
71 views
how to dynamically modify the filter in tcpdump
I am modifying tcpdump to dynamically change the filter that it uses to get the output from.
currently the tcpdump uses the pcap_set_filter to actually prepare the filter for the incoming packets or ...
0
votes
1answer
260 views
Build libpcap for Python 2.7.x in windows 7
I've tried several different things and crawled around on lots of forums looking for an answer to this question.
My goal is to simply parse through a wireshark .pcap-ng trace file using Python. From ...
0
votes
1answer
52 views
generate statistics during pcap_loop every second
I am writing a PERL script, which captures packets, and then generate statistics in every second about all the TCP streams, which were online in that second.
I am using NET::Pcap, and I want somehow ...
0
votes
1answer
49 views
Mirror network traffic for traffic interception
I want to develop an application where all traffic from network segment gets mirrored onto a windows station in order to be able to see all tcp-ip request/response data (filtering).
I know that it ...
0
votes
0answers
118 views
android libpcap -> no such file or directory
I'm trying to use libpcap with android to test it I wrote a simple c program that looks like this
#include <string.h>
#include <pcap.h>
#include <jni.h>
jstring ...
0
votes
1answer
85 views
pcap_next() function should be put before the packet transmission or after?
I want to capture the ACK packet in a tcp-3way handshake using libpcap
the code snippet is as below
pcap_packet = pcap_next(pcap_handler, &pcap_header);
if(pcap_packet !=NULL)
...
0
votes
1answer
98 views
packet sniffer - trace back to where content originated
I used sniffex.c as my starting point, and I've spent a few months working on getting the packet sniffer working the way I would like. It is a good tool for providing a summary of traffic flow in and ...
0
votes
2answers
294 views
android use pcap library
I have a general question according an android app, I need to use some pcap functionality in my android app. Because java does not give the possibility in raw packet injections and low layer ...
1
vote
1answer
71 views
Memcpy and memory management with pcap
as beginner I am having little trouble when dealing with libpcap in c++.
I am aiming to copy contents of 'packet' to another place in memory of equal size, so I can work with it undisturbed.
Here is ...
1
vote
1answer
129 views
why the ethernet and ip header of packets, which are captured by libpcap function, are distorted
I used libpcap function pcap_next() to capture some tcp packets from other hosts
I checked the bytes of the captured packets
and notice that
the ethernet and ip header of packets are distorted, in a ...
0
votes
1answer
118 views
how to determine the starting byte of IP Header and TCP header in a raw packet
I want to use libpcap to capture packets
but since the length of ethernet header or 802.11 header may vary
and the length of IP header may also vary,
how can I determine the starting byte(pointer) of ...
0
votes
1answer
34 views
porting wireshark to qnx based system
I am a newbie to industry and as a part of my internship I have been assigned the above project.I have no experience in how to go about porting a particular application to a different OS.
So far,i ...
0
votes
0answers
37 views
erroneous time stamps being passed via shared memory from got_packet
I'm using sniffex.c as my starting point. Inside got_packet(...), and inside the switch, take for instance a tcp packet has been received, I'm writing a time stamp to an array of structures like ...
0
votes
0answers
39 views
libnids can not work after losing some packets
After the tcp transaction established, the capturer based on libnids begin to work. If the tcp connection is working properly but the network of the capturer disconnected , there are some losing ...
0
votes
0answers
72 views
segmentation fault when using libpcap
This is Valgrind output for my program which I use for parsing .pcap files.
I may not paste the source of the program here, unfortunately...
The thing is, that I do not have any memcpy(...) call in ...
0
votes
2answers
152 views
pcap_next call fills in pcap_pkthdr with len equal to zero
I'm using libpcap of version 1.1.1 built as a static library(libpcap.a). When I try to execute a following block of code on RHEL 6 64 bit(The executable module itself is built as 32-bit ELF image) I ...
0
votes
1answer
167 views
How will I be able to printout the captured packets using pcap.loop() with a parameter of Pcap.LOOP_INFINITE into the JTextArea?
I'm quite new to JNetPcap and I'm still finding my way around with it, I'm trying to build a Packet sniffer for my project, Lately I'm trying printout packet information into a JTextArea by appending ...
2
votes
1answer
180 views
pcap files and endianness
Running the file command against a pcap file will print out something along the lines of -
$ file pcap.pcap
pcap.pcap: tcpdump capture file (little-endian) - version 2.4 ....
I've been looking for ...
0
votes
1answer
42 views
pcap - Proper capitalization when referring to the file standard?
How does one properly refer to a Packet Capture file in short hand when writing about it for documentation?
I see a mix between PCAP, PCap and pcap in various areas and wikis.
0
votes
1answer
226 views
tcpdump - Maximum amount of packets in a pcap file?
Is there a maximum amount of packets for pcap file (beyond OS limits?
Looking at the specification I don't see anything in the pcap file format that would limit the number of packets.
Perhaps will ...
