Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

please help #10

Closed
frankiehathaway opened this issue Sep 3, 2020 · 6 comments
Closed

please help #10

frankiehathaway opened this issue Sep 3, 2020 · 6 comments

Comments

@frankiehathaway
Copy link

Traceback (most recent call last):
File "Zydra.py", line 680, in
cracker.main()
File "Zydra.py", line 638, in main
self.dict_guess_password(dictfile, file)
File "Zydra.py", line 314, in dict_guess_password
possible_words = self.count_word(dict_file)
File "Zydra.py", line 94, in count_word
for line in wordlist:
File "/usr/lib/python3.8/codecs.py", line 322, in decode
(result, consumed) = self._buffer_decode(data, self.errors, final)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xf1 in position 933: invalid continuation byte

@frankiehathaway
Copy link
Author

when i run the script it gives me the error and i have met all the requirements, tried checking through the code but it has worked good for me

@frankiehathaway
Copy link
Author

why is it that when i use the rockyou wordlist it fails to bruteforce but when i create my own wordlist it works perfectly

@ahronmoshe
Copy link

Hi, quick solution:
try to split the rockyou file
it is work for me

@mlowczynski
Copy link

Hi, changing all:
open(dict_file, "r")
to:
open(dict_file, encoding='utf-8', errors='ignore')
in Zydra.py works for me.

@frankiehathaway
Copy link
Author

Hi, changing all:
open(dict_file, "r")
to:
open(dict_file, encoding='utf-8', errors='ignore')
in Zydra.py works for me.

thanks it works

@jeniker
Copy link

jeniker commented Oct 19, 2023

Hi, changing all: open(dict_file, "r") to: open(dict_file, encoding='utf-8', errors='ignore') in Zydra.py works for me.

Thank you very much. Appreciate it!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants