Hi sharks, what kind of data type are the payload data? is it possible to translate it into readable format? How can i do this? i tried to take the hex-data and convert it into text, than i got just:
How can i convert it into a readable format? thanks in advance asked 03 Jan '15, 05:07 sharky111 edited 03 Jan '15, 10:49 grahamb ♦ |
One Answer:
The "data" dissector in Wireshark is a fallback that just displays the hex values when no other dissector can be found that will dissect the data correctly. There are a few reasons why the "data" isn't being dissected:
Do you know what the data is meant to represent? Can you show the packet tree for one of the frames with the hex data, rather than the hex data itself (Hint use File -> Export Packet Dissections -> As Plain Text, set the Packet Range to the Selected Packet and set the Packet Details droplist to "All Expanded") ? answered 04 Jan '15, 02:19 grahamb ♦ i tried all "decode as" types but none of that solved my problem: its a packet from a android apk which always gives me an error. so, i tried to understand what data is beeing send to the server xxxxxxx. its a tcp packet. this is the total output of the packet:
(04 Jan ‘15, 09:21) sharky111 According to google, TCP port 9339 is used by the game Clash of Clans. If that’s the Android app you’re trying to decode, Wireshark has no dissector for that game’s protocol (assuming it’s a proprietary protocol). (04 Jan ‘15, 09:51) Hadriel |
Where does that hex come from? Have you just copied the contents of a pcap file? If so that's a binary file and you'll need to use an application or library that can read a pcap file.
This hex is just the payload data from a packet(output from wireshark under the tab data). Which program can translate it. Is it not possible to do it in wireshark?
what is the protocol?