mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-04-23 21:21:54 +02:00
23 lines
891 B
Plaintext
23 lines
891 B
Plaintext
# Author: Justin Henderson
|
|
# SANS Instructor and author of SANS SEC555: SIEM and Tactical Analytics
|
|
# Email: justin@hasecuritysolution.com
|
|
# Update by Wes Lambert
|
|
# Last Update: 12/14/2017
|
|
#
|
|
# This conf file is based on accepting logs for notice.log from Bro systems
|
|
filter {
|
|
if [type] == "bro_notice" {
|
|
# This is the initial parsing of the log
|
|
mutate {
|
|
gsub => [ "message", "[\"']", "" ]
|
|
}
|
|
csv {
|
|
columns => ["timestamp","uid","source_ip","source_port","destination_ip","destination_port","fuid","file_mime_type","file_description","protocol","note","msg","sub_msg","source_ip","destination_ip","p","n","peer_description","action","suppress_for","dropped","destination_country_code","destination_region","destination_city","destination_latitude","destination_longitude"]
|
|
separator => " "
|
|
}
|
|
mutate {
|
|
#add_tag => [ "conf_file_1109"]
|
|
}
|
|
}
|
|
}
|