mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Update NEWS for ssl changes.
When merging, please replace commit number of change with the version number that is assigned.
This commit is contained in:
parent
23eb8096fc
commit
3c7c60cf64
1 changed files with 16 additions and 0 deletions
16
NEWS
16
NEWS
|
@ -223,6 +223,22 @@ New Functionality
|
|||
Since ssl_ecdh_server_params contains more information than the old
|
||||
ssl_server_curve event, ssl_server_curve is now marked as deprecated.
|
||||
|
||||
- The ssl_application_data event was retired and replaced with ssl_plaintext_data.
|
||||
|
||||
- Some SSL events were changed and now provide additional data. These events
|
||||
are:
|
||||
|
||||
ssl_client_hello, ssl_server_hello, ssl_encrypted_data
|
||||
|
||||
If you use these events, you can make your scripts work on old and new versions
|
||||
of Bro by wrapping the event definition in an @if, for example:
|
||||
|
||||
@if ( Version::at_least("2.6") || ( Version::number == 20500 && Version::info$commit >= [commit number of change] ) )
|
||||
event ssl_client_hello(c: connection, version: count, record_version: count, possible_ts: time, client_random: string, session_id: string, ciphers: index_vec, comp_methods: index_vec)
|
||||
@else
|
||||
event ssl_client_hello(c: connection, version: count, possible_ts: time, client_random: string, session_id: string, ciphers: index_vec)
|
||||
@endif
|
||||
|
||||
- Functions for retrieving files by their ID have been added:
|
||||
Files::file_exists, Files::lookup_File
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue