TypeErrorの修正方法:ハッシュする前にUnicodeオブジェクトをエンコードする必要がありますか?


295

私はこのエラーがあります:

Traceback (most recent call last):
  File "python_md5_cracker.py", line 27, in <module>
  m.update(line)
TypeError: Unicode-objects must be encoded before hashing

このコードをPython 3.2.2で実行しようとすると:

import hashlib, sys
m = hashlib.md5()
hash = ""
hash_file = input("What is the file name in which the hash resides?  ")
wordlist = input("What is your wordlist?  (Enter the file name)  ")
try:
  hashdocument = open(hash_file, "r")
except IOError:
  print("Invalid file.")
  raw_input()
  sys.exit()
else:
  hash = hashdocument.readline()
  hash = hash.replace("\n", "")

try:
  wordlistfile = open(wordlist, "r")
except IOError:
  print("Invalid file.")
  raw_input()
  sys.exit()
else:
  pass
for line in wordlistfile:
  # Flush the buffer (this caused a massive problem when placed 
  # at the beginning of the script, because the buffer kept getting
  # overwritten, thus comparing incorrect hashes)
  m = hashlib.md5()
  line = line.replace("\n", "")
  m.update(line)
  word_hash = m.hexdigest()
  if word_hash == hash:
    print("Collision! The word corresponding to the given hash is", line)
    input()
    sys.exit()

print("The hash given does not correspond to any supplied word in the wordlist.")
input()
sys.exit()

'rb'でファイルを開くと問題が解決することがわかりました。
dlamblin 2017年

回答:


299

おそらくからの文字エンコーディングを探していwordlistfileます。

wordlistfile = open(wordlist,"r",encoding='utf-8')

または、行単位で作業している場合:

line.encode('utf-8')

3
open(wordlist,"r",encoding='utf-8')なぜ特定のエンコーディングでオープンを使用するのか、エンコーディングはデコードコーデックで指定され、このオプションなしでは、プラットフォーム依存のエンコーディングを使用します。
タンキーウー2016

129

encoding formatように定義する必要があります。utf-8この簡単な方法を試してください。

この例では、SHA256アルゴリズムを使用して乱数を生成します。

>>> import hashlib
>>> hashlib.sha256(str(random.getrandbits(256)).encode('utf-8')).hexdigest()
'cd183a211ed2434eac4f31b317c573c50e6c24e3a28b82ddcb0bf8bedf387a9f'

18

パスワードを保存するには(PY3):

import hashlib, os
password_salt = os.urandom(32).hex()
password = '12345'

hash = hashlib.sha512()
hash.update(('%s%s' % (password_salt, password)).encode('utf-8'))
password_hash = hash.hexdigest()

1
この行により、パスワードを使用できなくなります。password_salt = os.urandom(32).hex()既知の固定値である必要がありますが、サーバーに対してのみ秘密にすることができます。修正するか、コードに合わせてください。
Yash

1
@Yashに同意します。ハッシュごとに単一のソルトを使用するか(最高ではありません)、またはハッシュごとにランダムなソルトを生成する場合は、ハッシュに保存して後で比較するために使用する必要があります
Carson Evans

15

エラーはすでにあなたがしなければならないことを述べています。あなたにUnicode文字列をエンコードする必要があるので、MD5は、バイトで動作するbytesなどして、line.encode('utf-8')


11

最初にその答えを見てください。

さて、エラーメッセージは明確である:あなただけ(にするために使用何バイトではなく、Pythonの文字列を使用することができますunicodeあなたが持っているので、お好みのエンコードで文字列をエンコードするために、Pythonの<3での): 、、utf-32 または制限の一つでも8ビットエンコーディング(コードページと呼ばれるものもあります)。utf-16utf-8

ワードリストファイルのバイトは、ファイルから読み取るときにPython 3によって自動的にUnicodeにデコードされます。私はあなたがそうすることを勧めます:

m.update(line.encode(wordlistfile.encoding))

md5アルゴリズムにプッシュされたエンコードされたデータは、基礎となるファイルとまったく同じようにエンコードされます。


10
import hashlib
string_to_hash = '123'
hash_object = hashlib.sha256(str(string_to_hash).encode('utf-8'))
print('Hash', hash_object.hexdigest())

6

ファイルをバイナリモードで開くことができます。

import hashlib

with open(hash_file) as file:
    control_hash = file.readline().rstrip("\n")

wordlistfile = open(wordlist, "rb")
# ...
for line in wordlistfile:
    if hashlib.md5(line.rstrip(b'\n\r')).hexdigest() == control_hash:
       # collision


0

単一行の文字列の場合。bまたはBでラップします。例:

variable = b"This is a variable"

または

variable2 = B"This is also a variable"

-3

このプログラムはバグのない上記のMD5クラッカーの拡張バージョンであり、ハッシュされたパスワードのリストを含むファイルを読み取り、英語の辞書の単語リストからハッシュされた単語と照合します。お役に立てば幸いです。

次のリンクから英語の辞書をダウンロードしました https://github.com/dwyl/english-words

# md5cracker.py
# English Dictionary https://github.com/dwyl/english-words 

import hashlib, sys

hash_file = 'exercise\hashed.txt'
wordlist = 'data_sets\english_dictionary\words.txt'

try:
    hashdocument = open(hash_file,'r')
except IOError:
    print('Invalid file.')
    sys.exit()
else:
    count = 0
    for hash in hashdocument:
        hash = hash.rstrip('\n')
        print(hash)
        i = 0
        with open(wordlist,'r') as wordlistfile:
            for word in wordlistfile:
                m = hashlib.md5()
                word = word.rstrip('\n')            
                m.update(word.encode('utf-8'))
                word_hash = m.hexdigest()
                if word_hash==hash:
                    print('The word, hash combination is ' + word + ',' + hash)
                    count += 1
                    break
                i += 1
        print('Itiration is ' + str(i))
    if count == 0:
        print('The hash given does not correspond to any supplied word in the wordlist.')
    else:
        print('Total passwords identified is: ' + str(count))
sys.exit()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.