mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Spicy TLS: rename the analyzer to SSL
Naming the analyzer different than the old one was a mistake that required unnecessary code changes; keeping the old name makes things like StartTLS in other protocol work without additional code changes.
This commit is contained in:
parent
283d900758
commit
c682e5723b
8 changed files with 104 additions and 103 deletions
|
@ -3,7 +3,7 @@ signature dpd_tls_server {
|
|||
# SSL3 / TLS Server hello.
|
||||
payload /^(\x15\x03[\x00\x01\x02\x03]....)?\x16\x03[\x00\x01\x02\x03]..\x02...((\x03[\x00\x01\x02\x03\x04])|(\x7F[\x00-\x50])).*/
|
||||
tcp-state responder
|
||||
enable "tls"
|
||||
enable "ssl"
|
||||
}
|
||||
|
||||
signature dpd_tls_client {
|
||||
|
@ -11,7 +11,7 @@ signature dpd_tls_client {
|
|||
# SSL3 / TLS Client hello.
|
||||
payload /^\x16\x03[\x00\x01\x02\x03]..\x01...\x03[\x00\x01\x02\x03].*/
|
||||
tcp-state originator
|
||||
enable "tls"
|
||||
enable "ssl"
|
||||
}
|
||||
|
||||
signature dpd_dtls_client {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue