8 lines
194 B
Plaintext
8 lines
194 B
Plaintext
@load policy/protocols/ssh/interesting-hostnames.zeek
|
|
|
|
hook Notice::policy(n: Notice::Info)
|
|
{
|
|
if ( n$note == SSH::Interesting_Hostname_Login )
|
|
add n$actions[Notice::ACTION_EMAIL];
|
|
}
|