WireShark - Can I decode UTF-8 data in the packets?

╄→尐↘猪︶ㄣ 提交于 2019-12-10 12:38:23

问题


In Wireshark, how can I see non-ASCI characters in packets? some of my network data is in UTF-8 encoding and I would like Wireshark to recognize it.

  • Is there a plugin for it?
  • I found this but maybe there is something new about that.
  • I want to see Arabic, Chinese and Hebrew.

回答1:


In Wireshark, how can I see non-ASCI characters in a packet? some of my data in the packets is in the UTF-8 encoding and I would like Wireshark to recognize it.

  • Is there a plugin for it?

No - that's not what Wireshark plugins do. They can dissect packets, and do statistical analysis, but they can't affect the routines that a dissector uses.

  • I found this but maybe there is something new about that.

What's new is that you can (and should) specify the character encoding when dissecting a string.

What's not new is that Wireshark currently doesn't try to fully handle strings it's told are UTF-8 encoded. It can't just blindly try to display them, as they might not be valid UTF-8 strings, or they might contain non-graphic characters. We haven't yet added full UTF-8 support (or support for other character encodings that handle non-ASCII characters).



来源:https://stackoverflow.com/questions/9825440/wireshark-can-i-decode-utf-8-data-in-the-packets

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