mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 12:38:20 +00:00
SMB: call Done() for analyzers instantiated by dce_rpc-auth
This commit is contained in:
parent
c31c0ed2e2
commit
dae55514f2
1 changed files with 6 additions and 0 deletions
|
@ -15,9 +15,15 @@ refine connection DCE_RPC_Conn += {
|
||||||
|
|
||||||
%cleanup{
|
%cleanup{
|
||||||
if ( gssapi )
|
if ( gssapi )
|
||||||
|
{
|
||||||
|
gssapi->Done();
|
||||||
delete gssapi;
|
delete gssapi;
|
||||||
|
}
|
||||||
if ( ntlm )
|
if ( ntlm )
|
||||||
|
{
|
||||||
|
ntlm->Done();
|
||||||
delete ntlm;
|
delete ntlm;
|
||||||
|
}
|
||||||
%}
|
%}
|
||||||
|
|
||||||
function forward_auth(auth: DCE_RPC_Auth, is_orig: bool): bool
|
function forward_auth(auth: DCE_RPC_Auth, is_orig: bool): bool
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue