尝试学习解密
所以我想了解更多有关加密/解密的知识。我有一个 WordPress 博客,上面有密码。我想知道这是什么类型的加密,以及解密它的步骤:
$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
所以我想了解更多有关加密/解密的知识。我有一个 WordPress 博客,上面有密码。我想知道这是什么类型的加密,以及解密它的步骤:
$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这不是加密,而是散列。 wordpress使用的方法称为phpass,例如可以在wordpress代码库中找到实现。
由于它没有加密,因此您无法解密它。您可以尝试查找与哈希匹配的纯文本。这可以通过暴力破解来完成。对 wordpress 哈希执行此操作的程序是 hashcat。
It's not encryption, but hashing. The method used by wordpress is called phpass, the implementation can be found in the wordpress code-base for example.
As it's not encrypted, you can not decrypt it. You can try to find a plain-text however that matches the hash. This can be done with bruteforcing. A program that does this for the wordpress hashes is hashcat.
我认为单向哈希算法如
sha1
md5
输出 base64 编码字符串作为方法输入文本的大小示例: - PlainText (x) -> sha1() ->; base64 字符串 (y)
始终 x = y 因为这些密码被称为 分组密码
这些
sha1
和md5
函数被视为单向哈希算法这些函数被视为
i think oneway hashing algorithms such as
sha1
md5
which outputs a base64 encoded string as the size of the input text to the methodExample : - PlainText (x) -> sha1() -> base64 String (y)
always x = y becouse these ciphers are called block ciphers
These
sha1
andmd5
functions are considered as one way hash algosThese functions are considered as