Tagged Questions

4
votes
2answers
232 views

Confused by libcap (pcap) and wireless

Background: I'm teaching myself about packet sniffing. I run a very simple server in one shell, telnet to it from another, then try different methods to sniff on traffic. When I use raw sockets ...
4
votes
1answer
3k views

pcap struct pcap_pkthdr len vs caplen

We're sniffing packets using libpcap on linux The header we get on each packet looks like: struct pcap_pkthdr { struct timeval ts; /* time stamp */ bpf_u_int32 caplen; /* ...
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
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 ...
3
votes
3answers
1k views

Getting the number of packets in a pcap capture file?

I need a program which prints the number of packets in a capture file which uses the pcap format. This number does not seem available in the pcap header (probably because it is written before the ...
2
votes
2answers
68 views

“Replay” tcpdump file

I am writing a program for analyzing certain type of packets. I got the dump file containing test packets in tcpdump format. is there any way to send this dump into one of the interfaces? I thought ...
2
votes
1answer
47 views

Caching packets captured from pcap

This is a follow-up question to this: Rebuilding a packet to inject via pcap What I want to accomplish: functionA: Capture packets with pcap. Modify source/destination addresses. Recalculate ...
2
votes
1answer
52 views

802.11 header mismatch - pcap

I'm capturing wirless frames the first structure i'm using is struct mgmt_header_t { u_int16_t fc; u_int16_t duration; u_int8_t da[6]; u_int8_t sa[6]; u_int8_t ...
2
votes
3answers
153 views

Struct value changes after passing to method

I am writing a packet parser using libpcap and encounter strange behaviour when trying to read the packet length form the pcap header. The first printf statement below prints out the correct packet ...
2
votes
1answer
120 views

Does recv remove packets from pcaps buffer?

Say there are two programs running on a computer (for the sake of simplification, the only user programs running on linux) one of which calls recv(), and one of which is using pcap to detect incoming ...
2
votes
3answers
1k views

How to parse TCP packet payload

I'm using pcap to capture TCP packets for which I would like to parse the payload. My strategy is as follows: Get the ethernet header and check if it has type ETHERTYPE_IP (IP packet) Check if the ...
2
votes
1answer
249 views

pcap_dump file not opened y Wireshark

I am trying to save the output of this file in libpcap format and although the file does get saved and the right data is written into it, Wireshark is unable to open it. Anyone see what I am missing ...
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
2answers
546 views

How do I create a new thread to make pcap_loop() and gtk_main() compatible?

These two functions are both infinite loops, and the programe hangs once called in the same thread. gtk_main(); ... pcap_loop(adhandle, 0, packet_handler, NULL); When I click the "start" button,I ...
1
vote
1answer
181 views

Rebuilding a packet to inject via pcap

Here is the situation: in my scenario I have, 3 computers, A, B and C. Computer A sends data to computer B. Computer B captures these packets with pcap, appends the headers, redoes the checksums, ...
1
vote
1answer
103 views

How to capture traffic from multiple interfaces using pcap

In order to sniff from multiple interfaces using pcap, I would do the following (in pseudocode): foreach interface: open a file descriptor using pcap_open_live() set the file descriptor to ...
1
vote
1answer
145 views

C - Writing structs to a file (.pcap)

I am trying to write a .pcap file, which is something that can be used in Wireshark. In order to do that, I have a couple of structs with various data types I need to write to a file. (see code) So, ...
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
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
3answers
138 views

strange characters in packets

I'm writing a sniffer for http packets with libpcap. Sometimes printing the content of the http payload I get strange characters.. do you know what could they be? *xNT:���3�@�"P#1u`��$%S{M�� or ...
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
2answers
264 views

pcap datalink LINUX_SLL

I'm trying to write a simple packet sniffer using libpcap. The first thing i'm trying to do when i capture a packet is to recognise the datalink protocol used and find the size of the header for that ...
1
vote
2answers
1k views

How restore data from pcap file?

Hi ppl =) I have following file: test_network.pcap: tcpdump capture file (little-endian) - version 2.4 (Ethernet, capture length 65535) I know that in this file are few video streams and i need to ...
1
vote
1answer
700 views

How to use pcap_breakloop?

I have a pcap_loop function in another function, that captures packets until the user stops it, i.e. void functionA() { signal(SIGINT, terminate_process); pcap_loop(handle, -1, callback, ...
1
vote
3answers
603 views

libpcap : No Wireless Devices detected

I want to capture packets going out of my machine, and I'm using libpcap (version 1.0.0-1) for the same. The problem is, that a basic program like this - #include <stdio.h> #include ...
0
votes
1answer
26 views

in_addr with random results

I'm working with the pcap library and I'm trying to capture the source and destination IP addresses but it seems to be giving me totally random results: Here is my struct: struct sniff_ip { u_char ...
0
votes
1answer
107 views

Processing incorrect mac addresses from 802.11 frames with pcap

I'm working throurgh a project with pcap and wireless. Following an example posted in response to oe of my earlier questions I am trying to extract the mac addresses from wireless frames. I have ...
0
votes
1answer
103 views

Mac OS X Lion Radiotap header and libpcap

Hi im trying to find information on the radiotap header for mac os x Lion. I'm attempting to capture wireless packets but the mac addresses i get out of 802.11 frames don't match what wireshark is ...
0
votes
2answers
231 views

Writing and accessing app files on iOS devices

I have a program which generates its own Wireshark pcap-file (sort of a network log if you havnt used it before). My app uses ANSI-C code to do this. In Android and Windows I simply use 'fopen' and ...
0
votes
2answers
119 views

C pcap 802.11 header

struct mgmt_header_t { u_int16_t fc; /* 2 bytes */ u_int16_t duration; /* 2 bytes */ u_int8_t da[6]; /* 6 bytes */ u_int8_t sa[6]; /* 6 bytes */ u_int8_t ...
0
votes
1answer
57 views

How do I get network layer and transport layer protocols from a pcap in C?

I am working on an assignment that has me parsing information from a pcap file in C using the libpcap library. I have had success in figuring out how to get data such as the source/dest ip addresses, ...
0
votes
1answer
124 views

Creating a .pcap file in native code in Android then retreiving it

I have an app that uses native code to generate a .pcap file (amongst other things). The idea is that while running the program, the pcap file is created and I can later retrieve it by say plugging in ...
0
votes
1answer
147 views

Interpretting payload using libpcap

So I've been playing around with libpcap lately, and I have a quick question. Here's the code in question: while( (result = pcap_next_ex(adapterHandle, &header, &packetData)) >= 0) { ...
0
votes
1answer
213 views

How to send/receive layer 2 frames on wlan

What I wanna do: Implement a layer 2 protocol in user-space. So I'm using pcap under Linux 2.6.32 to sniff packets: ... struct pcap_t *pcap_h = pcap_open_live("wlan0", BUFSIZ, 1, 0, errbuf); ...
0
votes
1answer
280 views

listening using Pcap with timeout

I want to write a small application using Libpcap in C on Linux. Currently, it starts to sniff and wait for the packets. But that's not what I need actually. I want it to wait for N seconds and then ...
0
votes
3answers
1k views

libpcap get MAC from AF_LINK sockaddr_dl (OSX)

I am trying to obtain the MAC addresses of all of my interface on OSX using C. The common ways to obtain it Linux dont work on BSD - from everything I have seen, you must obtain the interfaces and ...
0
votes
2answers
159 views

Http POST.. why doesn't print anything?

I'm writing a sniffer program with the pcap library that checks the http traffic. I succeed when I m looking for GET messages or status codes but I don't know why it doesn't work for the post ...
0
votes
2answers
93 views

pcap why always packets of 8 bytes… why?

I'm using the pcap library but I don't know why I get always this output: new packet with size: udata= 8 hdr=8 pkt=8 This is the code: void handle_pcap(u_char *udata, const struct pcap_pkthdr ...
0
votes
1answer
230 views

How to filter POST requests using pcap?

I am playing around with the pcap library in C. I can filter http traffic using the filter expression "port 80" in the pcap_compile call, but now I'm wondering whether I can filter POST requests ...
0
votes
1answer
63 views

pcap only picking up on new connections

I wrote a very simple C program to do a packet capture using pcap. Thing is, it only picks up on a small subset of my network activity. (I think the pattern is that it only picks up on new TCP ...
0
votes
1answer
131 views

zero read timeout for pcap

Is -1 a valid read timeout for pcap? I was told by someone that setting to_ms to -1 in pcap_open_live(char *device, int snaplen, int promisc, int to_ms, char *errbuf); causes it to return immediately ...
0
votes
1answer
99 views

C pcap detecting inbound datagrams

In C I bind a datagram socket (AF_INET, SOCK_DGRAM) to INADDR_ANY. I then periodically use this socket to send and receive datagrams, and monitor the flow of packets with pcap. The problem is, I can't ...
0
votes
2answers
196 views

PCAP Web Service Usage Logging for Dummies

I've been assigned the task (for work) of working with PCAP for the first time in my life. I've read through the tutorials and have hacked together a real simple capture program which, it turns out, ...
0
votes
1answer
459 views

help using pcap library to sniff packets

i am using pcap sample codes to create my own sniffer. i downloaded their sample sniffer and its working on windows but not on linux. i am using gcc compiler on both machines, and i have only pcap.h ...
0
votes
1answer
315 views

printing sequence number of a sniffed packet

i am using pcap to create a packet sniffer. i have this tcp structure: typedef struct TSP_header{ unsigned short int sport; unsigned short int dport; unsigned int seqnum; ...
0
votes
4answers
721 views

uncompress gzipped HTTP message

I am analyzing Pcap captures with C and I need to uncompress the Gzipped body of the HTTP replies. I know that I can do that using Wireshark manually, but I would need to do it on the fly, inside my ...
0
votes
1answer
349 views

How portable is the output of pcap_compile?

pcap_compile() compiles a string into a filter program in the form of a bpf_program struct. In theory I could save the compiled form of the program and supply it to pcap_setfilter() on a different ...
0
votes
1answer
920 views

libpcap, pcap_next_ex, and incompatible pointer types

Disclaimer: This is for a homework assignment, but the question is not regarding the assignment, just about general syntax weirdness. I'm trying to use libpcap in the context of a much larger ...
-1
votes
3answers
239 views

Traceroute Theory

I am toying with trace route, my application send a ICMP echo request with a ttl of 0 every time i receive a time exceeded message i increment the ttl by one and resent the package, but what happens ...
-4
votes
1answer
109 views

Could someone explain these code snippets? [closed]

In the following code, could someone explain to me how the following works? /* * sniffex.c * * Sniffer example of TCP/IP packet capture using libpcap. * * Version 0.1.1 (2005-07-05) * ...