mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

- While updating, I did some further work on the branch. - New function in the base/utils/files for extracting filenames from content-dispositions. - New script for entity excerpt extraction if you aren't interested in full extraction. The data goes a log field too. - Some renaming and reorganization of types. - Updated tests to work with new code. * origin/topic/jsiwek/smtp-refactor: Make the doc.coverage test happy. SMTP script refactor. (addresses #509) Conflicts: doc/scripts/DocSourcesList.cmake policy/protocols/smtp/__load__.bro policy/protocols/smtp/base/__load__.bro
25 lines
869 B
Text
25 lines
869 B
Text
# @TEST-REQUIRES: grep -q '#define HAVE_LIBMAGIC' $BUILD/config.h
|
|
# @TEST-EXEC: bro -r $TRACES/smtp.trace %INPUT
|
|
# @TEST-EXEC: btest-diff smtp_entities.log
|
|
# @TEST-EXEC: btest-diff smtp-entity_10.10.1.4:1470-74.53.140.153:25_1.dat
|
|
# @TEST-EXEC: btest-diff smtp-entity_10.10.1.4:1470-74.53.140.153:25_2.dat
|
|
# @TEST-EXEC: bro -r $TRACES/smtp.trace %INPUT SMTP::extraction_prefix="test"
|
|
# @TEST-EXEC: test -e test_10.10.1.4:1470-74.53.140.153:25_1.dat
|
|
# @TEST-EXEC: test -e test_10.10.1.4:1470-74.53.140.153:25_2.dat
|
|
|
|
@load base/protocols/smtp
|
|
|
|
redef SMTP::extract_file_types=/text\/plain/;
|
|
|
|
event bro_init()
|
|
{
|
|
Log::remove_default_filter(SMTP::SMTP_ENTITIES);
|
|
Log::add_filter(SMTP::SMTP_ENTITIES, [$name="normalized-mime-types",
|
|
$pred=function(rec: SMTP::EntityInfo): bool
|
|
{
|
|
if ( rec?$mime_type )
|
|
rec$mime_type = "FAKE_MIME";
|
|
return T;
|
|
}
|
|
]);
|
|
}
|