I am trying to extract SMPP message content using tshark. But when I use -T fields -e "smpp.message" it only prints 1 and not the actual message.
If I use -T text -x parameters it shows the actual message, but I cant filter to only shows the smpp message. When i consult tshark -G it shows:
What I am doing wrong? asked 27 Jan '17, 06:37 Bricio |
One Answer:
The latest version of packet-smpp.c shows Try upgrading Wireshark. You can even get a very recent automated version. answered 27 Jan '17, 13:44 cmaynard ♦♦ |
TY, is there a way, inside wireshark, to return this field as STRING? My smpp messages is always strings. I don't have c or c++ compiler to change the file and recompile.
Without modifying the Wireshark sources and recompiling it, you can probably achieve this with some scripting, removing the
:
's and converting each hex byte to its ASCII-equivalent character.