Add non-hostile error "Request timed out waiting for client to continue authentication"

This commit is contained in:
2024-03-24 12:48:13 +01:00
parent 8394506f4f
commit f8d1c1b3e1

View File

@ -104,6 +104,9 @@ sub parser {
m/Info: pam\([a-zA-Z0-9@._-]*,($re_host),\<.*\>\): unknown user/gi && do {
$host = $1;
};
} elsif($string =~ m/Request timed out waiting for client to continue authentication/) {
$hostile = 0;
$reply = 'Timed out during auth';
} else {
$reply = 'No match for '.$string;
}