弦乐时的 scapy 编码

发布于 2024-12-10 08:27:28 字数 236 浏览 1 评论 0原文

当您在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明天过后 2024-12-17 08:27:28

\x 是十六进制表示法。在这种情况下,当您使用 str(IP()) 时,您正尝试将数据包数据转换为不完全有效的字符串,因为并非每个原始十六进制数据都可以在 ASCII 表中找到并用字母替换它,因此任何不能的十六进制数据都可以在 ASCII 表中找到。未转换的将以 \x14 格式显示。

我认为以下示例会有所帮助:

  • 使用 scapy 方法查看数据包摘要
  • 将数据包数据编码为十六进制格式以使用 python 方法查看

    欢迎使用 Scapy (2.1.1-dev)
    >>>>>包=IP()
    >>>>> pkt.summary()
    '127.0.0.1> 127.0.0.1 ip'
    >>>>>数据=str(包)
    >>>>> data.encode('十六进制')
    '450000140001000040007ce77f0000017f000001'
    >>>>>
    

请考虑以下几点:

  • 在 SCAPY 中,如果您创建 IP 层而不确定源和目标,则环回地址将被设置为默认值,如图所示在示例中
    '127.0.0.1> 127.0.0.1 ip'
  • .summary() 是一个 Scapy 方法
  • str(), .encode 是一个 python 方法

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:

  • viewing packet summary using scapy method
  • encoding the packet data into hex format to view using python methods

    Welcome to Scapy (2.1.1-dev)
    >>> pkt=IP()
    >>> pkt.summary()
    '127.0.0.1 > 127.0.0.1 ip'
    >>> data=str(pkt)
    >>> data.encode('hex')
    '450000140001000040007ce77f0000017f000001'
    >>>
    

consider these points:

  • in SCAPY if you create an IP layer without determining the source and destination the loopback address will be set as default for both as shown in the example
    '127.0.0.1 > 127.0.0.1 ip'
  • .summary() is a Scapy method
  • str(), .encode are a python methods
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文