尝试学习解密

发布于 2024-12-09 04:51:09 字数 117 浏览 0 评论 0 原文

所以我想了解更多有关加密/解密的知识。我有一个 WordPress 博客,上面有密码。我想知道这是什么类型的加密,以及解密它的步骤:

$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1。

So I am trying to learn more about encryption/decryption. I have a wordpress blog with passwords on it. I am wondering what type of encryption this is, and the steps to go about decrypting it:

$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

街道布景 2024-12-16 04:51:09

我想知道这是什么类型的加密,以及解密它的步骤:
$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1

这不是加密,而是散列。 wordpress使用的方法称为phpass,例如可以在wordpress代码库中找到实现。

由于它没有加密,因此您无法解密它。您可以尝试查找与哈希匹配的纯文本。这可以通过暴力破解来完成。对 wordpress 哈希执行此操作的程序是 hashcat

I am wondering what type of encryption this is, and the steps to go about decrypting it:
$P$B0GFbv8OYRk.jZxN88dfBO0/iJdLL1

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.

成熟稳重的好男人 2024-12-16 04:51:09

我认为单向哈希算法如 sha1 md5 输出 base64 编码字符串作为方法输入文本的大小

示例: - PlainText (x) -> sha1() ->; base64 字符串 (y)

始终 x = y 因为这些密码被称为 分组密码

这些 sha1md5 函数被视为单向哈希算法

这些函数被视为

一种将消息或文本转换为固定字符串的算法
数字,通常用于安全或数据管理目的。那个“一
way”意味着几乎不可能推导出原文
来自字符串。

i think oneway hashing algorithms such as sha1 md5 which outputs a base64 encoded string as the size of the input text to the method

Example : - PlainText (x) -> sha1() -> base64 String (y)

always x = y becouse these ciphers are called block ciphers

These sha1 and md5 functions are considered as one way hash algos

These functions are considered as

An algorithm that turns messages or text into a fixed string of
digits, usually for security or data management purposes. The "one
way" means that it's nearly impossible to derive the original text
from the string.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文