Decrypt MD5 hash [duplicate]

Deadly 提交于 2019-11-27 03:45:01

问题


Possible Duplicate:
Is it possible to decrypt md5 hashes?

Is there any way to decrypt the encrypted MD5 string, given the key?


回答1:


Try Google (see Using Google To Crack MD5 Passwords) or an online DB of MD5 hashes like md5(); or GDATA (the last one contains 1,133,766,035 unique entries).




回答2:


MD5 is a one-way hash. It cannot be decrypted. The closest thing to decrypting an MD5 hash would be to do a lookup against a pre-generated rainbow table. Also, I'm not sure what you mean by "I have the key". There is no "key" in an MD5 hash. Perhaps you are thinking of a salt? If your data has a salt value incorporated prior to hashing, the rainbow table approach probably won't be practical anyway.




回答3:


Message-Digest algorithm 5 is a widely-used cryptographic hash function with a 128-bit hash value. Encryption has 2 way : encrypt - decript , hash has one way - there is no decryption possible. BUT with database hash IS POSSIBLE to solve this issue.

See this sites :

www.rednoize.com – 50,709,274 Hash in database

www.md5oogle.com – 6,353,625 Hash in database

www.hashmash.com – 1,611,191 Hash in database

www.gdataonline.com 1,155,613 Hash in database

www.md5decryption.com – 872,145 Hash in database

www.md5decrypter.com – 583,441 Hash in database

www.md5decrypter.co.uk – 41,568,541 Hash in database

www.macrosoftware.ro – 5,403 Hash in database




回答4:


MD5 is not a encryption algorithm, it is a hashing algorithm. Read up on MD5 and Crytographic Hash Functions.

To create a MD5 hash of a string in Python you do as follows:

import hashlib
m = hashlib.md5()
m.update("String to Hash")
echo m.digest()
# '\xed\xa5\x8bA-nU\xa2\xee\xbb[_s\x130\xbd'
echo m.hexdigest() # its more common to show hashes as a hex string
# 'eda58b412d6e55a2eebb5b5f731330bd'



回答5:


MD5 is an asymmetric hash -- not an encryption mechanism. You can't "decrypt" an MD5. If you know the hashed contents are limited to a (short) set of possibilities, you can use a Rainbow Table to attempt to brute-force reverse the hash, but this will not work in the general case.




回答6:


I still think google is the best answer for this question but I made a script which can crack md5 and others hashes like sha https://github.com/mouuff/craken/blob/master/pycracker.py



来源:https://stackoverflow.com/questions/1562064/decrypt-md5-hash

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!