Tagged Questions

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

learn more… | top users | synonyms

5
votes
3answers
185 views

Where is a good place for a code review?

A few colleagues and I created a simple packet capturing application based on libpcap, GTK+ and sqlite as a project for a Networks Engineering course at our university. While it (mostly) works, I am ...
4
votes
2answers
228 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
3answers
973 views

Complete reconstruction of TCP Session (HTML pages) from WireShark pcaps, any tools for this?

I wonder if there is a way in wireshark to reconstruct a complete TCP Session (HTML page(s)) if we have wireshark pcaps. That is, can wireshark do that or is there any tool around that can do the ...
4
votes
3answers
110 views

question about pcap

i have to do a sniffer as an assignment for the security course. i am using c and the pcap library. i got everything working well (since i got a code from the internet and changed it). but i have some ...
4
votes
2answers
3k views

how do you decrypt SSH .pcap file that uses Diffie Hellman ecryption. With public and private keys

how do you decrypt SSH .pcap file that uses Diffie Hellman ecryption. With public and private keys. We are trying through Wireshark with no luck. please advise.
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; /* ...
4
votes
5answers
4k views

How to concatenate two tcpdump files (pcap files)

How to concatenate two tcpdump files, so that one traffic will appear after another in the file? To be concrete I want to "multiply" one tcpdump file, so that all the sessions will be repeated one ...
3
votes
1answer
98 views

maintain state between callback function

To Rephrase I am newbie to haskell. I am trying to parse a pcap file using network pcap package. I have byte stream as an input, so I used dispatchBS function with my own callback function. My ...
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
728 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
224 views

Python. Class, Struct, Dictionary?

I am disassembling TCP/IP packet into string format. What is the best way to structure and store it? Should I store it as a ctypes struct, python class, dictionary, or some other way? What are the ...
3
votes
2answers
462 views

pcap python library?

I'd like to ask for recommendation of a pcap library for python. I'm doing project on .pcap file parsing. I searched google and found pylibpcap. Is there anything else out there? Which lib do you ...
3
votes
3answers
776 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 ...
3
votes
3answers
2k views

Is there a way to programatically export files using Wireshark's facilities?

I am trying to automate a repetitive manual process for which I use WireShark: 1) Load a given pcap file 2) Apply a simple filter for a given protocol 3) Use the export dialog box to export the ...
3
votes
6answers
5k views

How can I filter a pcap file by specific protocol using python?

I have some pcap files and I want to filter by protocol, i.e., if I want to filter by HTTP protocol, anything but HTTP packets will remain in the pcap file. There is a tool called openDPI, and it's ...
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
1answer
44 views

How to install PCAP for ruby on Windows

This must be a relatively newb question but I am still stuck. I know there is a simple solution to this. I've done some googling but could not find an exact answer. Here is the error I get... ...
2
votes
1answer
62 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
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
51 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
1answer
632 views

Capture TCP-Packets with Python

I try to capture an HTTP-download with Python using dpkt and pcap. The code looks like ... pc = pcap.pcap(iface) for ts, pkt in pc: handle_packet(pkt) def handle_packet(pkt): eth = ...
2
votes
3answers
152 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
2answers
796 views

Python Packet Sniffer

What Python module should I be using to sniff packets? I don't need anything too complex, I just need to get the data out of some packets being sent to my computer. I am using Python 2.6 and Windows ...
2
votes
1answer
531 views

Parsing pcap files with dpkt (Python)

I'm trying to parse a previously-captured trace for HTTP headers using the dpkt module: import dpkt import sys f=file(sys.argv[1],"rb") pcap=dpkt.pcap.Reader(f) for ts, buf in pcap: ...
2
votes
1answer
370 views

scapy: UDP defragmentation timestamp problem

i use the following script (python + scapy) to create a defragmented version of a pcap file that contains fragmented UDP packets. # Read pcap file in=rdpcap("in.pcap") # Defragment ... out = ...
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
500 views

Get the Network Interface Name in C#

I'm writing a program which uses the wPCAP library. I managed to get out the list of interface names: \Device\NPF_{A9734063-CA83-4D91-A35B-CC727749256A ... Now my question is: how do I know ...
2
votes
2answers
754 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
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
0answers
191 views

Pcap library for C# odd problem

I'm currently using the PCAP C# library and making no changes from the received packet. The problem is illustrated in the following image. The left side is Wireshark (The correct version of the ...
2
votes
1answer
439 views

Changing the packet data with pcapy/impacket

I'm writing a small program in Python on Linux that will intercept packets flying over the wire on specific port from host A to host B. Host C will act as a man in the middle so all traffic will be ...
2
votes
1answer
362 views

How to remove Ethernet layer from a pcap file?

I have a pcap captured with Wireshark. Is there any function in Wireshark that will strip Ethernet layer from the result? Or any command line tool to do it?
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
342 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
412 views

PCap performance

Which c-sharp wrapper of Pcap is fastest? How fast is PCap compared to using sockets?
2
votes
2answers
545 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 ...
2
votes
3answers
2k views

Can libpcap reassemble TCP segments

I need to sniff TCP traffic into my application. Can libpcap reassemble TCP segments or I have to do it manually? The home page says "Full documentation is provided with the source packages in man ...
2
votes
4answers
2k views

IPv6 decoder for pcapy/impacket

I use the pcapy/impacket library to decode network packets in Python. It has an IP decoder which knows about the syntax of IPv4 packets but apparently no IPv6 decoder. Does anyone get one? In a ...
1
vote
2answers
50 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
85 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
2answers
86 views

Sending packets from pcap with changed src/dst in scapy

I am trying to send a previously recorded traffic (captured in pcap format) with scapy. Currently I am stuck at striping original Ether layer. The traffic was captured on another host and I basically ...
1
vote
1answer
174 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
209 views

Network traffic monitor with pcapy in python

I have written simple network traffic monitor to get transfer rate in B/s and/or total data transfer (in B). However when I test it by transferring a file with ftp (using Total Commander) I just can ...
1
vote
1answer
79 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
101 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
2answers
309 views

Decoding G.729 using FFMPEG from RTP stream (PCAP)

I have pcap file that contains RTP data which in turn is audio for G.729 codec. Is there a way to decode this stream by pushing it into FFMPEG? This would probably mean I have to extract the RTP ...
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
94 views

How can I capture packets from a PPP interface with pypcap?

It's dpkt.ethernet.Ethernet(pkt) for an ethernet interface, what is it for the ppp0 interface?

1 2 3 4