ricklamers / gridstudio

Grid studio is a web-based application for data science with full integration of open source data science frameworks and languages.
GNU Affero General Public License v3.0
8.88k stars 1.5k forks source link

Need a means to change password #133

Open 490694561 opened 4 years ago

490694561 commented 4 years ago

Now it is only possible to add the account password through the counter generation or by modifying the database file of {path}/grid-app/proxy/db/manager.db

......
h := sha1.New()
io.WriteString(h, password+constPasswordSalt)
passwordHashed := base64.URLEncoding.EncodeToString(h.Sum(nil))
fmt.Println("Hashed PW: " + passwordHashed)
......

Thanks for this app, so useful.