Added validation user actually exists on system

This commit is contained in:
Russ Magee 2018-10-03 22:31:35 -07:00
parent 420e0319ca
commit cb7a79063e
1 changed files with 15 additions and 0 deletions

View File

@ -22,6 +22,15 @@ import (
"github.com/jameskeane/bcrypt"
)
func userExistsOnSystem(who string) bool {
_, userErr := user.Lookup(who)
if userErr != nil {
return false
} else {
return true
}
}
func AuthUserByPasswd(username string, auth string, fname string) (valid bool, allowedCmds string) {
b, e := ioutil.ReadFile(fname)
if e != nil {
@ -66,6 +75,9 @@ func AuthUserByPasswd(username string, auth string, fname string) (valid bool, a
r = nil
runtime.GC()
if !userExistsOnSystem(username) {
valid = false
}
return
}
@ -102,5 +114,8 @@ func AuthUserByToken(username string, connhostname string, auth string) (valid b
return true
}
}
if !userExistsOnSystem(username) {
valid = false
}
return
}