HatBashBR / HatDecrypter

MD5, SHA1 and WordPress Decryptor
MIT License
27 stars 9 forks source link

have some problems #1

Open 687766616e opened 6 years ago

687766616e commented 6 years ago

$ python hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665 File "hatdecrypter.py", line 36 print "Voce precisa definir um tipo de hash!" ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(print "Voce precisa definir um tipo de hash!")? $ python2 hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665 Traceback (most recent call last): File "hatdecrypter.py", line 3, in import crackers, threading, time, itertools File "/data/data/com.termux/files/home/Hat/crackers.py", line 4, in from bs4 import BeautifulSoup ImportError: No module named bs4

mateeuslinno commented 6 years ago

You need install bs4 pip install beautifulsoup4

687766616e commented 6 years ago

@mateeuslinno $ pip install beautifulsoup4 Requirement already satisfied: beautifulsoup4 in /data/data/com.termux/files/usr/lib/python3.6/site-packages $

從我的 MI6,使用 FastHub 發送。

mateeuslinno commented 6 years ago

Do you install ? run python https://i.imgur.com/xMtv3Vy.png

evertonch commented 6 years ago

you need to install the libraries, here is how: pip install bs4 passlib pip2 install bs4 passlib i think the problem is that your default python is 3.5 so pip will only install the libraries for python 3.5, and that's why it shows an error in the first example, this program is made to run on python2. so running pip2 install bs4 passlib and then running the program with python2 should work!