mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10:38:20 +00:00
Updates the SSH analyzer to support the "curve25519-sha256" KEX.
From the OpenSSH 7.4 changelog: sshd(8), ssh(1): Support the "curve25519-sha256" key exchange method. This is identical to the currently-supported method named "curve25519-sha256@libssh.org".
This commit is contained in:
parent
8ce746cc25
commit
7e374f8c3f
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ refine connection SSH_Conn += {
|
|||
return true;
|
||||
if ( update_kex_state_if_equal("ecmqv-sha2", KEX_ECC) )
|
||||
return true;
|
||||
if ( update_kex_state_if_equal("curve25519-sha256@libssh.org", KEX_ECC) )
|
||||
if ( update_kex_state_if_startswith("curve25519-sha256", KEX_ECC) )
|
||||
return true;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue