Reputation: 7321
I have a Wireshark capture file that contains some XML encoded in UTF8. Unfortunately Wireshark doesn't play well with UTF8 so I have strings like ש×\231×\227×\225ת
in my file. How can I decode these or, even better, let Wireshark decode these on the fly?
Upvotes: 2
Views: 1799
Reputation: 7321
Something gets mangled when Wireshark saves the file as text. I ended up saving the bytes to file and writing a ruby script to interpret them as UTF8. I'm sure there's a better solution but I don't know what it is.
Upvotes: 1