Prestashop:尝试解码密码

发布于 2024-11-05 05:15:15 字数 250 浏览 0 评论 0 原文

我正在为 Prestashop 开发 Asp.NET 后端。我有一个小问题:无法解码密码! 这里的代码

        cmd.CommandText = "SELECT * FROM ps_employee WHERE email=@email AND passwd=MD5(@pwd) AND active=1"

如您所见,我正在使用 MYSQL MD5 函数,但是...它不起作用..密码是正确的,我确定...

i'm developing a backend in Asp.NET for Prestashop. I've a small problem: can't decode password !
Here the code

        cmd.CommandText = "SELECT * FROM ps_employee WHERE email=@email AND passwd=MD5(@pwd) AND active=1"

As you can see, i'm using MYSQL MD5 function, but ... it not work.. Password is correct, i'm sure...

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

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

发布评论

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

评论(2

陪你到最终 2024-11-12 05:15:15

密码哈希是salted,prestashop似乎正在使用值settings.inc.php 中设置“http://www.prestashop.com/forums/viewthread/67770/” rel="noreferrer">_COOKIE_KEY_

您必须查找该值并计算它的 md5 哈希值以及连接的密码:md5(@COOKIE_KEY.@pwd)

The password hash is salted, prestashop seems to be using the value _COOKIE_KEY_ in settings.inc.php for this.

You will have to look up this value and compute the md5 hash of it and the password concatenated: md5(@COOKIE_KEY.@pwd)

梦情居士 2024-11-12 05:15:15

这是 PrestaShop 内置的安全功能。您将无法解码任何编码的密码。

This is a security feature built into PrestaShop. You will not be able to decode any encoded passwords.

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