only check for ancestor if the session is not a ssh session

Signed-off-by: Tin Lai <tin@tinyiu.com>
This commit is contained in:
Tin Lai 2024-11-01 09:57:59 +10:00
parent 49ee2cbe29
commit cffa650124
1 changed files with 5 additions and 2 deletions

View File

@ -56,8 +56,11 @@ func (s *SessionStore) CreateSession(pid int, parentpid int, grandparentpid int,
func (s *SessionStore) verifySession(ctx sockets.CallingContext, sessionType SessionType) bool {
for _, session := range s.Store {
if session.sessionType == sessionType {
if session.Expires.After(time.Now()) {
return true
// only check for ancestor if the session is not a ssh session
if sessionType == SSHKey || (session.ParentPid == ctx.ParentProcessPid && session.GrandParentPid == ctx.GrandParentProcessPid) {
if session.Expires.After(time.Now()) {
return true
}
}
}
}