mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
12 lines
323 B
Text
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);
|
|
}
|