模块 'scapy' 没有属性'IP'(或"TCP"),即使使用 "from scapy.all import *"


def send(ip, port):
ip_layer = scapy.IP()
tcp_layer = scapy.TCP()  

对于scapy 2和forward,from scapy.all import *被用来导入所有内容。我确实以这种方式导入scapy,但发生属性错误:module 'scapy' has no attribute 'IP'

为什么会这样?我该如何修复相应的代码?

使用from scapy.layers.inet import *

相关内容

  • 没有找到相关文章

最新更新