mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
Merge remote-tracking branch 'origin/topic/vladg/bit-1533'
BIT-1533 #merged * origin/topic/vladg/bit-1533: Call ProtocolConfirmation in MySQL analyzer.
This commit is contained in:
commit
c194919b57
3 changed files with 23 additions and 1 deletions
19
CHANGES
19
CHANGES
|
@ -1,4 +1,23 @@
|
||||||
|
|
||||||
|
2.4-418 | 2016-03-21 12:22:15 -0700
|
||||||
|
|
||||||
|
* Add protocol confirmation to MySQL analyzer. (Vlad Grigorescu)
|
||||||
|
|
||||||
|
* Check that there is only one of &read_expire, &write_expire,
|
||||||
|
&create_expire. (Johanna Amann)
|
||||||
|
|
||||||
|
* Fixed &read_expire for subnet-indexed tables, plus test case. (Jan
|
||||||
|
Grashoefer)
|
||||||
|
|
||||||
|
* Add filter_subnet_table() that works similar to matching_subnet()
|
||||||
|
but returns a filtered view of the original set/table only
|
||||||
|
containing the changed subnets. (Jan Grashoefer)
|
||||||
|
|
||||||
|
* Fix bug in tablue values' tracking read operations. (Johanna
|
||||||
|
Amann)
|
||||||
|
|
||||||
|
* Update TLS constants and extensions from IANA. (Johanna Amann)
|
||||||
|
|
||||||
2.4-406 | 2016-03-11 14:27:47 -0800
|
2.4-406 | 2016-03-11 14:27:47 -0800
|
||||||
|
|
||||||
* Add NetControl and OpenFlow frameworks. (Johanna Amann)
|
* Add NetControl and OpenFlow frameworks. (Johanna Amann)
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.4-406
|
2.4-418
|
||||||
|
|
|
@ -19,6 +19,9 @@ refine flow MySQL_Flow += {
|
||||||
|
|
||||||
function proc_mysql_handshake_response_packet(msg: Handshake_Response_Packet): bool
|
function proc_mysql_handshake_response_packet(msg: Handshake_Response_Packet): bool
|
||||||
%{
|
%{
|
||||||
|
if ( ${msg.version} == 9 || ${msg.version == 10} )
|
||||||
|
connection()->bro_analyzer()->ProtocolConfirmation();
|
||||||
|
|
||||||
if ( mysql_handshake )
|
if ( mysql_handshake )
|
||||||
{
|
{
|
||||||
if ( ${msg.version} == 10 )
|
if ( ${msg.version} == 10 )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue