Skip to content

Commit

Permalink
remove underscore in field hassh_ServerAlgorithms. FIXES #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Reardon committed May 9, 2024
1 parent 2673b77 commit 556abb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/hassh.zeek
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ redef record SSH::Info += {
sshka: string &log &optional;

# The algorithms that went into the server hash.
hasshServer_Algorithms: string &log &optional;
hasshServerAlgorithms: string &log &optional;
};

option log_raw_hassh_algorithms = T;
Expand Down Expand Up @@ -68,7 +68,7 @@ function get_hasshServer(c: connection, capabilities: SSH::Capabilities)
c$ssh$hasshServer = md5_hash(algo_list);

if ( log_raw_hassh_algorithms )
c$ssh$hasshServer_Algorithms = algo_list;
c$ssh$hasshServerAlgorithms = algo_list;

if ( log_key_algorithm )
c$ssh$sshka = join_string_vec(capabilities$server_host_key_algorithms, ",");
Expand Down

0 comments on commit 556abb4

Please sign in to comment.