sermoni

"Service monitor" / cronjob status service
Log | Files | Refs

commit dd21e40dde5e7338f8f19e0c6f6ccf201a01e965
parent 50b6db7a0dd1957ea964a8ad27e259c3d4f70390
Author: Vetle Haflan <vetle.haflan@luxsave.com>
Date:   Sat, 16 May 2020 16:43:46 +0200

Small note

Diffstat:
Minternal/http/auth.go | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/internal/http/auth.go b/internal/http/auth.go @@ -58,6 +58,7 @@ func loginHandler(w http.ResponseWriter, r *http.Request) { json.Unmarshal(content, &data) passphrase := data[keyPassphrase] passhash := sha256.Sum256([]byte(passphrase)) + // Converting byte slices to string is fine, it's how bytes.Equal does it if string(passhash[:]) == string(conf.PassHash) { session, _ := store.Get(r, keySessionName) session.Values[keyAuthenticated] = true