mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix SSL scripting error leading to access of unitialized field
Reported by Justin Azoff
This commit is contained in:
parent
43c0cf1e3d
commit
b749dda520
1 changed files with 1 additions and 1 deletions
|
@ -315,12 +315,12 @@ event ssl_alert(c: connection, is_orig: bool, level: count, desc: count) &priori
|
|||
|
||||
event ssl_established(c: connection) &priority=7
|
||||
{
|
||||
set_session(c);
|
||||
c$ssl$established = T;
|
||||
}
|
||||
|
||||
event ssl_established(c: connection) &priority=20
|
||||
{
|
||||
set_session(c);
|
||||
hook ssl_finishing(c);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue