pcap (packet capture) consists of an application programming interface (API) for capturing network traffic

learn more… | top users | synonyms

0
votes
0answers
13 views

WinPcap C++ program no longer compiles in Visual Studio 2010

Ok. So, we've had a project that's worked for a long time, and now today I opened it up, made a change to some file i/o, and tried to compile. I get ton's of errors, and I have no clue why. The ...
0
votes
0answers
23 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
0answers
11 views

How to prevent tcpreplay from printing warning information?

I try to replay a large pcap file, while tcpreplay keep printing "Warning: Packet #50579 has gone back in time". That will affect the efficiency. It there a way to stop this?
0
votes
0answers
39 views

How to convert H264 RTP stream from PCAP to a playable video file

I have captured stream of H264 in PCAP files and trying to create media files from the data. The container is not important (avi,mp4,mkv,…). When I'm using videosnarf or rtpbreak (combined with python ...
0
votes
0answers
12 views

tcpdump: How to capture arrival / outgoing interface for a packet?

I would like to capture the "incoming" interface and "outgoing" interface for packets transiting through a software switch (assume it has 10 ports and I want to know which of those 10 interfaces a ...
1
vote
1answer
35 views

filtering packets from a specific ip using perl and Net::Pcap and Net::PcapUtils

I've been trying to write a script that filters packets out of a device and from a specific ip address over that device. I want data to be like the output i get from wireshark when you select a ...
0
votes
0answers
32 views

Undefined reference to functions from pcap.h

I write RTP sniffer and need to create dll to use it in my java project as native. I use cl.exe cl.exe -I"C:\Program Files\Java\jdk1.7.0_13\include" -I"C:\Program ...
0
votes
0answers
22 views

Best way to parse pcap files in python / alternatives to dpkt

I'm experimenting with parsing network-captures in python and found dpkt very easy to use. However it fails horribly when trying to parse pcap-ng-files or capture-files with manipulated headers (i.e. ...
-1
votes
1answer
28 views

Testing WinPCAP with a Console Application

I want to check if I could successfully load the dll's for WinPCAP and want to do it by writing a simple C/C++ console application. However I do not have neither experience nor an idea about how to do ...
0
votes
0answers
43 views

c send/receive ARP packets

I have a C program that sends ARP requests and receives the ARP replies. I checked the received ARP replies via nmap, and the number is not correct, sometimes I receive all replies but sometimes I ...
0
votes
0answers
34 views

How to simulate DOS attacks using DARPA dataset or pcap files?

I am working on my master's thesis which is about XML-HTTP DOS attacks. I have some pcap files and DARPA dataset but I don't know how to use them to simulate DOS attacks ? I used Wireshark to open ...
0
votes
0answers
29 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 ...
1
vote
0answers
50 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
15 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
20 views

ATM pcap file to Ethernet Pcap file

I am looking for .pcap file format of ATM.Its needed in my project.I am looking for mechanism so that ATM pcap file can be converted to Ethernet pcap file
0
votes
0answers
35 views

Are there any package capturing (pcap) libraries for Python3?

I've found dpkt, pcapy, pycapy, and many others, but none of them were updated for Python3 (or updated at all in the last two years, as far as I can tell).
0
votes
0answers
22 views

Fix PCAP file bad Checksum via Bit-Twist?

i have some PCAP files with bad checksum that i want to fix, is it possible to do it with Bit-Twist ?
0
votes
0answers
64 views

How to write packets from vpn tunnel to pcap file

I used the Android's ToyVpnClient to set up a tunnel and intercept incoming & outgoing packets. I want to write these packets from this tunnel, which is stored in a ByteBuffer, to a pcap file. ...
0
votes
1answer
37 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
0answers
43 views

Tshark and Wireshark frame sizes

I'm starting a Python script to quickly identify some stats from frames in captures. My questions are: what is the best way to find the actual sizes of PDUs at the Transport, Internet and Data Link ...
0
votes
1answer
15 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, ...
2
votes
1answer
34 views

what does ntohs() in pcap exactly do?

I read the documentation from one of the answers: The ntohs function takes a 16-bit number in TCP/IP network byte order (the AF_INET or AF_INET6 address family) and returns a 16-bit number in host ...
1
vote
2answers
140 views

cabal install pcap windows 64bit

I cannot install pcap package under Windows 7 (64 bit). Anybody know how to do that? Error message if I run "cabal install pcap": cabal.exe: Missing dependency on a foreign library: Missing (or ...
0
votes
1answer
101 views

How to read IRC packets?

I'm currently using pcap in C++ to read a tcp packet. The problem is I'm confused as to how I go about reading if the packet is using an IRC protocol and then how do I read the commands that are sent ...
0
votes
0answers
8 views

Passing qoutput of xtractr query to a variable

I want to take the output of xtractr query into a variable and use that variable further. Could somebody please help me with this? I tried doing the following: ...
1
vote
1answer
177 views

Extract time and source ip address from pcap file

I have pcap trace file and I want to extract the time and source IP address from the packets. I'm using tcpdump and awk. Here is a sample of the file 02:00:00.001814 IP 61.31.228.1.80 > ...
3
votes
1answer
42 views

Request rights with native Mac OS X dialog for pcap

is there an easy way of requesting root rights for whole app with native dialog in Mac OS X? I am doing packet capture which requires root access to network device. I am using C++, not objective C. I ...
0
votes
1answer
68 views

tcpdump mac filtering [closed]

I am referring to the post How to filter MAC addresses using tcpdump Is it possible to perform this mac filtering for a set of different mac addresses? e.g. tcpdump -i prism0 ether src ...
0
votes
1answer
100 views

C PCAP library unknown types error

I installed the pcap library on my linux system but when including it I get the errors /usr/include/pcap/bpf.h:88:1: error: unknown type name ‘u_int’ /usr/include/pcap/bpf.h:108:2: error: unknown ...
0
votes
1answer
45 views

Generics needed to extend/implement these interfaces?

I am trying to design interfaces and classes to parse certain types of packets inside pcap-format file. (I know special libraries exist, but I need to do it myself) So I have a classifier interface, ...
0
votes
3answers
65 views

Why InputStream.available() so time consuming?

I have implemented my own class to read pcap files. (Binary files, i.e. tcpdump, wireshark) public class PcapReader implements Iterator<PcapPacket> { private InputStream is; public ...
0
votes
1answer
130 views

tshark outputting all fields?

Is it possible to get tshark output every field (within the packet) using the -T fields option, or similar? e.g. For every field in the packet/reconstruction, I would like something like this: ...
0
votes
1answer
108 views

Weird pcap header of byte sequence 0a 0d 0d 0a created on Mac?

I have a PCAP file that was created on a Mac with mergecap that can be parsed on a Mac with Apple's libpcap but cannot be parsed on a Linux system. combined file has an extra 16-byte header that ...
1
vote
1answer
182 views

Modify a PCAP file using Perl with checksum update

I have some 250MB pcap. I have able to change MAC and IP address' using tcpreplay but I also need to modify some fields inside the packet payload. If I change the field by reading as a binary the ...
0
votes
1answer
105 views

pcap2har for a pcap that was generated by tshark(-w option)

My pcap file is generated via a command like: cmd = """tshark -r "%s" -R "frame.time_relative >= %f" -w "%s" """ % (pcap_name, first_dns_query_time, normalized_pcap_name) subprocess.Popen(cmd) ...
0
votes
2answers
53 views

Using libpcap.dylib on a kext [duplicate]

I am writing a kext driver for OS X and would like to use functions from the library libpcap.dylib. Libpcap.dylib lives in /usr/lib on OS X. Can it be used from kernel space? How can I use ...
1
vote
0answers
95 views

STL map container with values of type boost::circular_buffer

Introduction I am writing an app that needs the ability to track the throughput of discreet profiles of network traffic (using libpcap, of course). The basic idea is to accumulate byte and packet ...
0
votes
1answer
294 views

Tshark - Export packet info from pcap to cvs

I am trying to programmatically capture a stream of packets by using Tshark. The simplified terminal command I am using is: tshark -i 2 -w output.pcap This is pretty straightforward, but I then ...
0
votes
2answers
146 views

Opening .pkt (Omnipeek capture) file in C

I would like to open an omnipeek (.pkt) file in a C program. How do I do it? Conversion to .pcap and opening via pcap library results in loss of important radio information. Can I have a sample ...
-1
votes
2answers
57 views

Output the dump of a sniffer to an external file in C

I was creating a simple sniffer, just for fun, and I want to output the dump to a file. Here's the code of the sniffer: #include <stdio.h> #include <pcap.h> #define MAX_PACKET_NUM 5 int ...
-2
votes
1answer
60 views

yet another flowmeter installation error [closed]

I install yaf and now I want to work with it, but when I type this command: yaf --in filename.pcap --out flows.yaf I get this error: yaf: error while loading shared libraries: ...
0
votes
1answer
71 views

pcap_stats and pcap_dump_open dont't work together

i have the following problem. I build a c++ program with two threads. On the parent thread i send some raw ethernet frames and in the child thread all the libpcap stuff is running. For the output i ...
2
votes
2answers
333 views

Sniffer with libpcap on Mac OS X in C

I was trying to create my own sniffer (ONLY FOR FUN), and I work on a Mac. I'm using libpcap, which is a very good library for sniffing. So, I used this simple sniffer, which sniffs 5 packets: (It is ...
0
votes
1answer
144 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 ...
0
votes
0answers
79 views

Crafting a custom bluetooth packet with Scapy

I'm trying to craft a custom Bluetooth packet with Scapy (2.2.0). I've tried using a few of the lower-layer protocols that are mentioned on Wikipedia, and I haven't had any success. For exaple: ...
1
vote
1answer
132 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
40 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
170 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 ...
0
votes
0answers
116 views

Decoding packet capture files .cap in java

I have a packet capture file .cap .It is encoded with g.722.How do i convert it to a playable format eg.wav form.
0
votes
0answers
62 views

Reading pkt_data from winpcap, need a litlle help :)

hey guys im trying to read the pkt_data from winpcap and extract certain information like destination ip, source ip, mac, and other information avaible :) the thing is that after reading the packet ...

1 2 3 4 5 8