bcrypt 的解密器

发布于 2024-12-02 07:44:56 字数 161 浏览 2 评论 0原文

标题是非常不言自明的。我不确定这是否存在,因为它会极大地损害 bcrypt 的安全性,但我在 Rails 应用程序中使用 Devise 并忘记了我的密码。但是我可以访问服务器并找到信息。我可以看到加密的密码并需要解密它。

我不需要问题的替代解决方案,我只想要一个解密器,这样我就可以获得密码。

The title is pretty self explanatory. I'm not sure if this exists, as it would greatly compromise the security of bcrypt, but i'm using Devise in a rails app and forgot my password. However I can access the server and find the info. I can see the encrypted password and need to decrypt it.

I do not want alternate solutions to the problem, i just want a decryptor so I can get the password.

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

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

发布评论

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

评论(1

预谋 2024-12-09 07:44:56

为什么不启动 Rails 控制台并手动重新分配密码呢?

u = User.find_by_username('myname')
u.password = u.password_confirmation = 'reset_password'
u.save

通常沿着这些思路的东西会起作用。

Why don't you just spin up a Rails console and re-assign your password manually?

u = User.find_by_username('myname')
u.password = u.password_confirmation = 'reset_password'
u.save

Usually something along those lines will work.

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