有什么方法可以删除 WordPress 数据库中的哈希值吗?
WordPress 数据库中的所有密码均经过哈希处理。我作为唯一的用户运行着 20 多个博客。我经常忘记密码,不得不重设密码。有什么办法可以删除哈希值吗?
All of the passwords in WordPress databases are hashed. I'm running 20+ blogs with me as the only user. I often forget my password and have to reset it. Is there any way to remove the hash?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于安全原因,密码应在保存到数据库之前进行哈希处理,但不建议这样做将纯密码存储在数据库中。散列是在 MD5 中完成的,即使我们应用过滤器也很难反转它。
it is for security reason that password should be hashed before saving to database and not recommended to store plain password in the database. the hashing is done in MD5 and it is extremly diffcult to reverse it even we apply filters.