mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
##! Detect file downloads over HTTP that have MD5 sums matching files in Team
|
|
##! Cymru's Malware Hash Registry (http://www.team-cymru.org/Services/MHR/).
|
|
##! By default, not all file transfers will have MD5 sums calculated. Read the
|
|
##! documentation for the :doc:base/protocols/http/file-hash.bro script to see
|
|
##! how to configure which transfers will have hashes calculated.
|
|
|
|
@load base/frameworks/notice
|
|
@load base/protocols/http
|
|
|
|
module HTTP;
|
|
|
|
export {
|
|
redef enum Notice::Type += {
|
|
## The MD5 sum of a file transferred over HTTP matched in the
|
|
## malware hash registry.
|
|
Malware_Hash_Registry_Match
|
|
};
|
|
}
|
|
|
|
event log_http(rec: HTTP::Info)
|
|
{
|
|
if ( rec?$md5 )
|
|
{
|
|
local hash_domain = fmt("%s.malware.hash.cymru.com", rec$md5);
|
|
when ( local addrs = lookup_hostname(hash_domain) )
|
|
{
|
|
# 127.0.0.2 indicates that the md5 sum was found in the MHR.
|
|
if ( 127.0.0.2 in addrs )
|
|
{
|
|
local url = HTTP::build_url_http(rec);
|
|
local message = fmt("%s %s %s", rec$id$orig_h, rec$md5, url);
|
|
NOTICE([$note=Malware_Hash_Registry_Match,
|
|
$msg=message, $id=rec$id, $URL=url]);
|
|
}
|
|
}
|
|
}
|
|
}
|