Tagged Questions

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
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
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
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
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 ...
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 ...
1
vote
1answer
61 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
388 views

Pcap capture merge problem

I have two pcap files $ capinfos cap1_stego0.pcap File name: cap1_stego0.pcap File type: Wireshark/tcpdump/... - libpcap File encapsulation: Raw IP Number of packets: 713 ...
1
vote
1answer
165 views

Multiple WEP keys which can be retrieved from the Pcap file

Ok, i have this Cap file that i captured with Wireshark. There are multiple WEP keys which can be retrieved from the file. Is there a way, using Wireshark or aircrack-ng, to know exactly how many ...
1
vote
1answer
338 views

Good library for TCP reassembly

What are some good libraries for doing TCP reassembly? I have some pcap files (too large to handle using wireshark) and I want to do TCP reassembly. Development of libnids seems to have stopped. I'm ...
0
votes
1answer
44 views

How do I use tshark to print request-response pairs from a pcap file?

Given a pcap file, I'm able to extract a lot of information from the reconstructed HTTP request and responses using the neat filters provided by Wireshark. I've also been able to split the pcap file ...
0
votes
2answers
244 views

Export pcap data to csv: timestamp, bytes, uplink/downlink, extra info

I was wondering if there is any tool that can parse pcap data and convert it to a csv file with the following information: timestamp, bytes, uplink/downlink, some extra info.. Basically, the ...
0
votes
0answers
71 views

How to use tshark to do this task

I don't have any base knowledge about tshark, and it is hard to find any tutorial to help me with this. So now I have a pcap file which consists a lot of network flows; a time range; an ip addr; a ...
0
votes
1answer
108 views

IPv6 samples Wireshark Samples [closed]

Possible Duplicate: Sample data for IPv6? Apart from what wireshark has at its website, is there a good resource where I can download various samples of IPv6 pcaps?
0
votes
1answer
97 views

Capinfos precise timestamp

I am working on a parsing script for a bunch of regular small pcap files created with tshark. What I need is to extract the precise (down to milliseconds) timestamp of the first packet in the capture ...
0
votes
1answer
275 views

How to use libpcap to parse pcap file.

I want to parse only RTP packets from a .pcap file generated from WireShark using libpcap library. I have seen number of example that works on device to get the packets using libpcap but i am not able ...
0
votes
1answer
178 views

How to extract all the http request's tcp sequence numer with tshark?

For some research reason, I need to get the http package's tcp sequence numbers. I have already got the pcap file, so how should I do that with tshark? Thanks so much for answer my question!!!
0
votes
1answer
116 views

How can I strip n bytes from each packet in a packet capture?

I have a number of packet captures in pcap format. Each packet contains a message for which I have dissector however each packet has 4 bytes prepended to it. This means the dissector will not ...
0
votes
1answer
127 views

Captured packets of edonky2000 protocol

Is there any captured packets of edonky2000 protocol, I am looking for the following type of messages: login message. search(client-server, client to servers) message. download message. upload ...
0
votes
1answer
439 views

How do I get Wireshark to read header-less pcap files without a UDP/IP/Ethernet header?

Does Wireshark support a format that doesn't require TCP/UDP/Ethernet headers in every packet? Any other (non-pcap) formats wireshark supports would be appreciated. I need to get header-less data ...
0
votes
1answer
179 views

Anyone had any experience with *.pcap manipulation libs?

I'm using the SharpPcap + PacketDotNet libraries to process some .pcap files and came across a bug in the way the timestamps are calculated. Take this Timeval property, which is something along these ...