mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-01-07 00:33:12 +01:00
24 lines
657 B
Plaintext
24 lines
657 B
Plaintext
# Author: Justin Henderson
|
|
# SANS Instructor and author of SANS SEC555: SIEM and Tactical Analytics
|
|
# Email: justin@hasecuritysolution.com
|
|
#
|
|
# Updated by Wes Lambert
|
|
# Last Update: 12/14/2017
|
|
#
|
|
# This conf file is based on accepting logs for syslog.log from Bro systems
|
|
filter {
|
|
if [type] == "bro_syslog" {
|
|
# This is the initial parsing of the log
|
|
mutate {
|
|
gsub => [ "message", "[\"']", "" ]
|
|
}
|
|
csv {
|
|
columns => ["timestamp","uid","source_ip","source_port","destination_ip","destination_port","protocol","facility","severity","message"]
|
|
separator => " "
|
|
}
|
|
mutate {
|
|
#add_tag => [ "conf_file_1117"]
|
|
}
|
|
}
|
|
}
|