(item sshParsedLog)
| 1327 | } |
| 1328 | |
| 1329 | func isSSHAuthEvent(item sshParsedLog) bool { |
| 1330 | return item.History.Status == constant.StatusSuccess || item.History.AuthMode != "" |
| 1331 | } |
| 1332 | |
| 1333 | func shouldParseSSHLogLine(line, status, filter string) bool { |
| 1334 | if !strings.Contains(line, "sshd") { |
no outgoing calls
no test coverage detected