zeek/scripts/policy/frameworks/intel/seen/pubkey-hashes.zeek
2025-04-24 23:24:40 +05:30

12 lines
323 B
Text

@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);
}