Parsing pcap taken from wireshark file using - Java

14,531

Solution 1

The asker mentioned that jNetPcap is not ideal because it wraps a native library. In the time since the accepted answer, a pure Java library has emerged: https://github.com/aboutsip/pkts

Solution 2

I found this on another blog and may seems helpful to you:

  1. you can read offline pcap file like this (all of the packets): http://jnetpcap.com/node/905

  2. Extract necessary information and save them one by one in the Txt files.

in order to extract information, you can do like this: http://jnetpcap.com/tutorial/usage

Share:
14,531
MBH
Author by

MBH

Software Engineer, Addicted to writing Mobile Applications for both platforms Android and iOS.

Updated on July 20, 2022

Comments

  • MBH
    MBH almost 2 years

    I am working on converting PCAP file taken from wireshark using JAVA without using native or ready libraries.

    i converted the bytes to string directly just for checking the meaningful parts of it.

    then i tried to convert it from hexadecimal to string. It was not meaningful.

    there is java library jNetPcap which is wrapping all the libpcap library native calls which is written in c.

    The following picture is captured the wireless network. so the pcap contains the same information: Source ip, destination ip, protocol, length and info

    Wireshark picture

    I am trying to get the same result form the pcap file which contains the data in hexadecimal or binary:

    d4c3 b2a1 0200 0400 0000 0000 0000 0000
    0000 0400 0100 0000 2fd4 b355 2af8 0600
    3600 0000 3600 0000 0100 5e00 0016 f409
    d8ed d951 0800 46c0 0028 0000 4000 0102
    4049 c0a8 0308 e000 0016 9404 0000 2200
    fa02 0000 0001 0300 0000 e000 00fb 2fd4
    

    at the end i want to get to the output to be like something like this:

    Output

    Any clue or suggestions where to get the packets and file format can help me alot. there maybe somebody else who already came along with this problem ?

    Thank you