This is a static archive of our old Q&A Site. Please post any new questions and answers at ask.wireshark.org.

How to convert data.data in Base64 to human readable format?

0

Hello,

I know Follow TCP Stream do this, but I use custom columns and need to see human readable text instead of 32:30:30:20:43:6f....

is it possible with Lua/Python or with some patch?

nice feature if I could define custom column this way:

decode_base64(data.data)
tolowcase(data.data)
is_base64(data.data) ? decode_base64(data.data) : data.data
decode_base64(bytes[10-34])
etc. you got the idea

BR

asked 25 Dec '10, 17:42

lostbit's gravatar image

lostbit
1112
accept rate: 0%

edited 25 Dec '10, 18:02