Add ignore for TLS ALPNS .* rejected

This commit is contained in:
2024-04-17 15:37:03 +02:00
parent cbae1c859d
commit 69ecca18a7

View File

@ -170,6 +170,10 @@ sub parser {
$host = $2;
};
}
} elsif($string =~ m/TLS ALPN/) {
if($string =~ m/rejected$/) {
$reply = 'TLS ALPN rejected'
}
}
return { retval => 1, retmsg => $reply, hostile => $hostile, host => $host, string => $string };
}