python-scapy IKEv2_Transform

问题描述 投票:0回答:1
>>> from scapy.all import load_contrib
>>> load_contrib('ikev2')
>>> IKEv2_Transform()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'IKEv2_Transform' is not defined. Did you mean: 'IKEv2Transforms'?

我希望这能起作用——但事实并非如此;为什么? (看起来应该可以)

python scapy
1个回答
0
投票

问题是正在使用

pip --user --break-system-packages scapy
版本
python -c "import scapy;print(scapy.VERSION)"
透露了这一点。

pip uninstall scapy
工作了

© www.soinside.com 2019 - 2024. All rights reserved.