Tagged Questions

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
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 ...
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 ...
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
39 views

Tcp payload extraction and correct ip address

I'm trying to extract tcp payload from a packet , and here's a minimal case of capture callback: void capture_callback (u_char *hdr , const struct pcap_pkthdr* pkthdr , const u_char* buff) { ...
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
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
0answers
128 views

TCP options for tcpdump files

Hi I am trying to get the options field for a tcp packet using c language. I am able to see the tcp options used using wireshark on my local machine and my packet capture isn't a live packet capture. ...
0
votes
1answer
591 views

Capturing and assembling TCP streams with libnids

I've been writing a simple sniffer tool. I started out with libpcap, but then realized it would be useful to keep track of TCP stream information, so I began reading about and experimenting with ...