stormshadow07 / HackTheWorld

An Python Script For Generating Payloads that Bypasses All Antivirus so far .
953 stars 173 forks source link

cant run ./HackTheWorld.py #27

Open rarestuff opened 4 years ago

rarestuff commented 4 years ago

Can't run the script... I got this:

File "HackTheWorld.py", line 69
print color(("[+] Encrypted Shellcode saved in [{}]".format(Filename)))
^
SyntaxError: invalid syntax
root@kali:~/HackTheWorld# python HackTheWorld.py
Traceback (most recent call last):
File "HackTheWorld.py", line 17, in
from Crypto.Hash import MD5
ImportError: No module named Crypto.Hash

jarnick91 commented 4 years ago

install pycrypto. works for me now link below

pip install pycrypto

sn00w19 commented 3 years ago

if "pip install pycrypto" shows you errors, do "pip install pycryptodome", that solved it for me. If you now "python HackTheWorld.py" and get "no module named term color" do "pip install termcolor" that fixed it for me

nobeltnium commented 3 years ago

I tried install pycrypto and pycryptodome. But still got the same error like OP did. Also tried to run with python 2 with no success (a guy reccommend that in a duplicated issue)