mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
Merge remote-tracking branch 'origin/topic/seth/tls-1.2-fix'
Closes #1020. * origin/topic/seth/tls-1.2-fix: Single character fix to correct support for TLS 1.2 (my bad).
This commit is contained in:
commit
ba4f03bc98
6 changed files with 19 additions and 2 deletions
5
CHANGES
5
CHANGES
|
@ -1,4 +1,9 @@
|
|||
|
||||
2.1-762 | 2013-07-03 16:33:22 -0700
|
||||
|
||||
* Fix to correct support for TLS 1.2. Addresses #1020. (Seth Hall,
|
||||
with help from Rafal Lesniak).
|
||||
|
||||
2.1-760 | 2013-07-03 16:31:36 -0700
|
||||
|
||||
* Teach broxygen to generate protocol analyzer plugin reference.
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.1-760
|
||||
2.1-762
|
||||
|
|
|
@ -693,7 +693,7 @@ refine connection SSL_Conn += {
|
|||
head2 : uint8) : int
|
||||
%{
|
||||
if ( head0 >= 20 && head0 <= 23 &&
|
||||
head1 == 0x03 && head2 < 0x03 )
|
||||
head1 == 0x03 && head2 <= 0x03 )
|
||||
// This is most probably SSL version 3.
|
||||
return (head1 << 8) | head2;
|
||||
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#separator \x09
|
||||
#set_separator ,
|
||||
#empty_field (empty)
|
||||
#unset_field -
|
||||
#path ssl
|
||||
#open 2013-07-02-18-46-17
|
||||
#fields ts uid id.orig_h id.orig_p id.resp_h id.resp_p version cipher server_name session_id subject issuer_subject not_valid_before not_valid_after last_alert client_subject client_issuer_subject
|
||||
#types time string addr port addr port string string string string string string time time string string string
|
||||
1357328848.549370 UWkUyAuUGXf 10.0.0.80 56637 68.233.76.12 443 TLSv12 TLS_RSA_WITH_RC4_128_MD5 - - CN=*.taleo.net,OU=Comodo PremiumSSL Wildcard,OU=Web,O=Taleo Inc.,street=4140 Dublin Boulevard,street=Suite 400,L=Dublin,ST=CA,postalCode=94568,C=US CN=COMODO High-Assurance Secure Server CA,O=COMODO CA Limited,L=Salford,ST=Greater Manchester,C=GB 1304467200.000000 1467676799.000000 - - -
|
||||
#close 2013-07-02-18-46-17
|
BIN
testing/btest/Traces/tls1.2.trace
Normal file
BIN
testing/btest/Traces/tls1.2.trace
Normal file
Binary file not shown.
2
testing/btest/scripts/base/protocols/ssl/tls-1.2.test
Normal file
2
testing/btest/scripts/base/protocols/ssl/tls-1.2.test
Normal file
|
@ -0,0 +1,2 @@
|
|||
# @TEST-EXEC: bro -r $TRACES/tls1.2.trace %INPUT
|
||||
# @TEST-EXEC: btest-diff ssl.log
|
Loading…
Add table
Add a link
Reference in a new issue