Change Suricata Paths and Added Logstash Files

This commit is contained in:
Mike Reeves
2018-08-28 09:30:59 -04:00
parent a7e1eeb318
commit f7afc909ff
18 changed files with 376 additions and 3 deletions
@@ -0,0 +1,22 @@
# Author: Justin Henderson
# SANS Instructor and author of SANS SEC555: SIEM and Tactical Analytics
# Email: justin@hasecuritysolution.com
# Last Update: 12/9/2016
filter {
if [event_type] == "suricata" and "test_data" not in [tags] {
mutate {
##add_tag => [ "conf_file_9400"]
}
}
}
output {
if [event_type] == "suricata" and "test_data" not in [tags] {
#stdout { codec => rubydebug }
elasticsearch {
hosts => elasticsearch
index => "logstash-ids-%{+YYYY.MM.dd}"
template => "/logstash-template.json"
}
}
}