Skip to content

Commit

Permalink
Merge pull request #3 from corelight/remove-underscore-hasshServer_Al…
Browse files Browse the repository at this point in the history
…gorithms

remove underscore in field hassh_ServerAlgorithms. FIXES #2
  • Loading branch information
benjeems authored May 9, 2024
2 parents 2673b77 + 556abb4 commit 8280c8d
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 8280c8d

Please sign in to comment.