使用 python 进行标头过滤
我想过滤wireshark捕获中的一些标头(转换为文本格式),以便我可以分析这些标头集。我需要一个python脚本来执行此操作。任何帮助将不胜感激
i want to filter some headers in a wireshark capture (converted to text format) so i can analyse these set of headers.i need a python script to do this. any help would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要查看 dpkt。它是一个用于简化读取(或生成)网络数据的 Python 库。只需将 Wireshark 数据保存为 Pcap 流,就可以轻松地从 Python 中打开它。
我不确切知道您想要哪些标头或如何过滤和格式化它们,但这里有一个您可以编写的示例:(取自 贡献者的博客文章)
You might want to look at dpkt. It's a Python library to simplify reading (or generating) network data. Just save your Wireshark data as a Pcap stream and it can easily be opened from within Python.
I don't know exactly which headers you want or how you need them filtered and formatted, but here's an example of what you could write: (taken from a contributor's blog post)