MD5密码解密
可能的重复:
是否可以解密 md5 哈希值?
反转 MD5 哈希
您好,有任何方法可以解密 md5 密码字段以允许用户编辑密码使用 javascript 的形式。或 PHP。
Possible Duplicate:
Is it possible to decrypt md5 hashes?
Reversing an MD5 Hash
hi there is any way to decrypt md5 password field to allow user to edit password in form using javascript. or php.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MD5 是单向哈希算法 - 不是一种加密方式。因此,无法解密它 - 只能检查另一个源输入是否具有相同的哈希值。
MD5 is one way hashing algorithm - not a means of encrypting. As such, there's no means of decrypting it - only checking to see if another source input has the same hash.
不,没有办法,因为散列不是可逆操作。
No, there is no way, since hashing is not a reversible operation.
您的问题不是很清楚,但是可以使用 Rainbowtables 来恢复哈希的原始字符串: http:// en.wikipedia.org/wiki/Rainbow_table
(如果哈希值被加盐,这当然会变得很麻烦)
Your question is not very clear, but recovery of the origional string for hashes can be done with rainbowtables: http://en.wikipedia.org/wiki/Rainbow_table
(if the hash was salted, this will become troublesome ofcourse)
几年前,我编写了一个应用程序,对单词列表进行暴力破解 MD5 哈希值,并通过搜索引擎找到之前破解的 MD5 哈希值,看看它是否能为您提供任何信息:
http://bigtrapeze.com/md5/
I wrote an app a few years back that brute-forces MD5 hashes against wordlists and previously-cracked MD5 hashes it finds via search engines, see if it comes up with anything for you:
http://bigtrapeze.com/md5/