使用send命令时,'L3PacketSocket'对象没有属性'ins'

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用send命令时,'L3PacketSocket'对象没有属性'ins'相关的知识,希望对你有一定的参考价值。

我试图使用UDP协议发送数据包。我在Ubuntu上运行Python 3并使用scapy。但是,我收到以下错误消息:“AttributeError:'L2Socket'对象没有属性'ins'”。完整的错误消息可以在下面看到。

我在这里读到https://github.com/secdev/scapy/issues/1868,由于Ubuntu是通过虚拟机运行的,因此无法以root身份运行可能会出现问题。任何帮助都非常欢迎!

这些是有问题的代码行:

from scapy.all import *
packet = IP(dst="127.0.0.1")/UDP(dport=123)/Raw(load="123")
send(packet)

Here is the error message

答案

你需要以root身份启动Scapy(sudo)。

仔细看看错误:它首先说“不允许操作”。您引用的错误是第一个失败的结果。

它已被多次报告,第二个错误已在master上修复:https://github.com/secdev/scapy/issues/1942

Scapy将无法在没有root的情况下运行Raw套接字。那是Linux限制。

以上是关于使用send命令时,'L3PacketSocket'对象没有属性'ins'的主要内容,如果未能解决你的问题,请参考以下文章

使用 send-mailmessage 命令时的电子邮件凭据

fastboot 刷system.img 提示 sending 'system' (*KB)... FAILED (remote: data too large)

如何在使用期望“发送”命令时将输出存储在变量中

关于AttributeError: 'NoneType' object has no attribute 'send_keys'

Discord.js V12 TypeError:无法读取未定义的属性“发送”

python selenium 运行提示:ibuteError: 'NoneType' object has no attribute 'send_keys'