mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Added validation user actually exists on system
This commit is contained in:
parent
420e0319ca
commit
cb7a79063e
1 changed files with 15 additions and 0 deletions
15
hkexauth.go
15
hkexauth.go
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue