649 / Memcrashed-DDoS-Exploit

DDoS attack tool for sending forged UDP packets to vulnerable Memcached servers obtained using Shodan API
1.32k stars 465 forks source link

Traceback: line 5, in <module> from scapy.all import * #45

Open lerkaaaa opened 5 years ago

lerkaaaa commented 5 years ago

root@d1amond:~# cd Memcrashed-DDoS-Exploit/ root@d1amond:~/Memcrashed-DDoS-Exploit# python3.6 ./Memcrashed.py

Traceback (most recent call last):
 File "./Memcrashed.py", line 5, in <module>
    from scapy.all import *
ModuleNotFoundError: No module named 'scapy.all'

root@d1amond:~/Memcrashed-DDoS-Exploit# pip install scapy

Requirement already satisfied: scapy in /usr/local/lib/python2.7/dist-packages/scapy-2.4.2.dev12-py2.7.egg

CrimsonTorso commented 5 years ago

The requirement has been satisfied already, but for Python2.7. Memcrashed is using Python3, which you're currently trying to run in Python2.7.

Try: pip3 install scapy or try this if the above won't work: python3-pip install scapy

If that won't work, paste the error in the replies.