zeek/scripts/policy/frameworks/intel/seen/pubkey-hashes.zeek
Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

13 lines
323 B
Plaintext

@load base/frameworks/intel
@load base/protocols/ssh
@load ./where-locations
event ssh_server_host_key(c: connection, hash: string) &group="Intel::PUBKEY_HASH"
{
local seen = Intel::Seen($indicator=hash,
$indicator_type=Intel::PUBKEY_HASH,
$conn=c,
$where=SSH::IN_SERVER_HOST_KEY);
Intel::seen(seen);
}