otale / tale

🦄 Best beautiful java blog, worth a try

Home Page:https://tale.biezhi.me

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

忘记管理密码怎么办??

HuashiHou opened this issue · comments

commented

@HuashiHou 你目前可以进入 SQLite 数据库直接修改密码,未来加入邮件配置可以通过邮箱找回。

密码规则是:password = md5(username + password)

在线 md5

cd tale/resources
sqlite3 tale.db
update t_users set password = '********' where username = '';
commented

Thanks 差的就是这个MD5规则