Skip to content Skip to sidebar Skip to footer

So Since Scapy Has Been Renamed To Kamene, How Would I Import And Use Base64_bytes?

So I used to be able to import scapy's base64_bytes by using from scapy.all import base64_bytes. However, I get this error when I do that: PIP package scapy-python3 used to provid

Solution 1:

There is a lot of confusion between Scapy and kamene. From https://scapy.net

An independent fork of Scapy was created from v2.2.0 in 2015, aimed at supporting only Python3 (scapy3k). The fork diverged, did not follow evolutions and fixes, and has had its own life without contributions back to Scapy. Unfortunately, it has been packaged as python3-scapy in some distributions, and as scapy-python3 on PyPI leading to confusion amongst users. It should not be the case anymore soon. Scapy supports Python3 in addition to Python2 since 2.4.0. Scapy v2.4.0 should be favored as the official Scapy code base. The fork has been renamed as kamene.

You are using kamene, and old Scapy fork with no support whatsoever.

You probably have installed scapy-python3 on PyPI. Uninstall it and use pip3 install scapy

NOT to use kamene is the best advice I can give you...

Post a Comment for "So Since Scapy Has Been Renamed To Kamene, How Would I Import And Use Base64_bytes?"