mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 21:18:20 +00:00
Updates to local.bro
This commit is contained in:
parent
b45c175147
commit
423769c61d
2 changed files with 11 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
##! This script takes MD5 sums of files transferred over HTTP and checks them with
|
##! This script takes MD5 sums of files transferred over HTTP and checks them with
|
||||||
##! Team Cymru's Malware Hash Registry (http://www.team-cymru.org/Services/MHR/).
|
##! 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
|
##! By default, not all file transfers will have MD5 sums calculated. Read the
|
||||||
##! documentation for the protocols/http/file-hash.bro script to see how to
|
##! documentation for the base/protocols/http/file-hash.bro script to see how to
|
||||||
##! configure which transfers will have hashes calculated.
|
##! configure which transfers will have hashes calculated.
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
|
@ -22,6 +22,7 @@ redef signature_files += "frameworks/signatures/detect-windows-shells.sig";
|
||||||
|
|
||||||
# Load all of the scripts that detect software in various protocols.
|
# Load all of the scripts that detect software in various protocols.
|
||||||
@load protocols/http/software
|
@load protocols/http/software
|
||||||
|
#@load protocols/http/detect-webapps
|
||||||
@load protocols/ftp/software
|
@load protocols/ftp/software
|
||||||
@load protocols/smtp/software
|
@load protocols/smtp/software
|
||||||
@load protocols/ssh/software
|
@load protocols/ssh/software
|
||||||
|
@ -45,11 +46,19 @@ redef signature_files += "frameworks/signatures/detect-windows-shells.sig";
|
||||||
# Load the script to enable SSL/TLS certificate validation.
|
# Load the script to enable SSL/TLS certificate validation.
|
||||||
@load protocols/ssl/validate-certs
|
@load protocols/ssl/validate-certs
|
||||||
|
|
||||||
# If you have libGeoIP support built in, do some geographic detections and logging.
|
# If you have libGeoIP support built in, do some geographic detections and
|
||||||
|
# logging for SSH traffic.
|
||||||
@load protocols/ssh/geo-data
|
@load protocols/ssh/geo-data
|
||||||
|
# Detect hosts doing SSH bruteforce attacks.
|
||||||
@load protocols/ssh/detect-bruteforcing
|
@load protocols/ssh/detect-bruteforcing
|
||||||
|
# Detect logins using "interesting" hostnames.
|
||||||
@load protocols/ssh/interesting-hostnames
|
@load protocols/ssh/interesting-hostnames
|
||||||
|
|
||||||
|
# Detect MD5 sums in Team Cymru's Malware Hash Registry.
|
||||||
|
@load protocols/http/detect-MHR
|
||||||
|
# Detect SQL injection attacks
|
||||||
|
@load protocols/http/detect-sqli
|
||||||
|
|
||||||
# Uncomment this redef if you want to extract SMTP MIME entities for
|
# Uncomment this redef if you want to extract SMTP MIME entities for
|
||||||
# some file types. The numbers given indicate how many bytes to extract for
|
# some file types. The numbers given indicate how many bytes to extract for
|
||||||
# the various mime types.
|
# the various mime types.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue