弦乐时的 scapy 编码
当您在 scapy 中串接数据包时,下面的编码是什么?这当然不是十六进制。
<块引用> <块引用>str(IP()) 'E\x00\x00\x14\x00\x01\x00\x00@\x00|\xe7\x7f\x00\x00\x01\x7f\x00\x00\x01'
What is this encoding below that you get when you string a packet in scapy? This is certainly not hex.
str(IP()) ’E\x00\x00\x14\x00\x01\x00\x00@\x00|\xe7\x7f\x00\x00\x01\x7f\x00\x00\x01’
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
\x 是十六进制表示法。在这种情况下,当您使用 str(IP()) 时,您正尝试将数据包数据转换为不完全有效的字符串,因为并非每个原始十六进制数据都可以在 ASCII 表中找到并用字母替换它,因此任何不能的十六进制数据都可以在 ASCII 表中找到。未转换的将以 \x14 格式显示。
我认为以下示例会有所帮助:
将数据包数据编码为十六进制格式以使用 python 方法查看
请考虑以下几点:
'127.0.0.1> 127.0.0.1 ip'
the \x is the hex notation. In this case when you use str(IP()) you are trying to convert the packet data into string which is not completely valid because not every raw hex data could be found in ASCII table to substitute it with a letter so any hex that couldn't be converted will seen in this format \x14.
I think the following example will help:
encoding the packet data into hex format to view using python methods
consider these points:
'127.0.0.1 > 127.0.0.1 ip'