About 1,310,000 results
Open links in new tab
  1. How can I read pcap files in a friendly format? - Server Fault

    2 You can directly view/capture the remote packets to wireshark using tcpdump. Remote packet capture using WireShark & tcpdump How to Use tcpdump to capture in a pcap file (wireshark …

  2. how to split a pcap file into a set of smaller ones

    Apr 13, 2010 · 59 I have a huge pcap file (generated by tcpdump). When I try to open it in wireshark, the program just gets unresponsive. Is there a way to split a file in set of smaller …

  3. How do I get a specific range of packets from a large pcap file with ...

    Oct 28, 2013 · I've got a huge pcap file (100GB) and I'm interested in a small number of packets which I know are numbers 5,000,000 to 5,000,020. How can I use tcpdump to read a pcap file, …

  4. How to save pcap file to text file using tshark - Stack Overflow

    Jul 16, 2021 · I can save this a.pcap to text file (.txt) with wireshark GUI. (File -> Save as -> k12 text file). "Text file" covers a number of text file formats, such as: a file showing the packet …

  5. linux - How to read perfectly a .pcap file - Stack Overflow

    Sep 1, 2022 · There are indications that the packet is not correct in other ways than a missing e. For example, the ether type is 0x09c3 and not 0x86dd (IPv6). Maybe this code to create a …

  6. Counting unique MAC addresses from a .pcap file - Stack Overflow

    Oct 5, 2020 · I'm trying to produce a shell command that will read a given .pcap file using tcpdump and would output the number of unique MAC addresses in the given .pcap file Can't wrap my …

  7. Getting the number of packets in a pcap capture file?

    Mar 25, 2009 · Robert Edmonds, author of pcaputils, mentioned to me that there is already a program doing what I want, capinfos, in the Wireshark package. It displays various indications …

  8. python using pyshark to parse .pcap file - Stack Overflow

    2 This should work with your Wireshark pcap file to obtain the source and destination addresses and ports. The output could be modified (e.g., csv, dictionary) to fit your specific requirements. …

  9. tshark - Need to extract data from PCAP, but get only one side of ...

    Aug 31, 2020 · Need to extract data from PCAP, but get only one side of conversation Asked 5 years, 3 months ago Modified 5 years, 3 months ago Viewed 9k times

  10. How can I parse all the packets in my pcap file instead of one?

    Nov 25, 2020 · I think the solution is either to create a list/dict to store the data from the parsepcap function or to move the opening, parsing and closing of the pcap file to main ().