Parsing pcap taken from wireshark file using - Java

浪子不回头ぞ 提交于 2019-12-09 05:29:44

问题


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

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:

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


回答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




回答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



来源:https://stackoverflow.com/questions/31630646/parsing-pcap-taken-from-wireshark-file-using-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!