mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
16 lines
No EOL
226 B
Text
16 lines
No EOL
226 B
Text
|
|
|
|
|
|
event file_new(f: fa_file)
|
|
{
|
|
print "found a file";
|
|
print f$mime_type;
|
|
print Files::add_analyzer(f, Files::ANALYZER_UNIFIED2);
|
|
}
|
|
|
|
event unified2_alert(f: fa_file, alert: count)
|
|
{
|
|
print "yaayyaya!!!";
|
|
|
|
print alert;
|
|
} |