Add support for timeout before authentication message

This commit is contained in:
2025-07-24 22:58:40 +02:00
parent 058792486c
commit 0d1bdf84e1

View File

@ -183,6 +183,14 @@ sub parser {
$reply = 'Reverse check failed';
} elsif($string =~ m/but this does not map back to the address/) {
$reply = 'Reverse map failure';
} elsif($string =~ m/Timeout before authentication for connection from/) {
$_ = $string;
$hostile = 1;
$reply = 'Timeout before authentication';
PARSER:
m/from\ ($re_host)\ to\ ($re_host),\ pid/gcix && do {
$host = $1;
};
} else {
$reply = 'No match for '.$string;
}