mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 14:08:20 +00:00
Only force logging of SSL if it actually was the SSL analyzer that
failed.
This commit is contained in:
parent
991e4f5dc3
commit
88beb31270
1 changed files with 1 additions and 1 deletions
|
@ -282,6 +282,6 @@ event protocol_confirmation(c: connection, atype: Analyzer::Tag, aid: count) &pr
|
|||
event protocol_violation(c: connection, atype: Analyzer::Tag, aid: count,
|
||||
reason: string) &priority=5
|
||||
{
|
||||
if ( c?$ssl )
|
||||
if ( c?$ssl && atype == Analyzer::ANALYZER_SSL )
|
||||
finish(c, T);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue