mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-30 04:43:14 +01:00
23 lines
703 B
Plaintext
23 lines
703 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 signatures.log from Bro systems
|
|
filter {
|
|
if [type] == "bro_signatures" {
|
|
# This is the initial parsing of the log
|
|
mutate {
|
|
gsub => [ "message", "[\"']", "" ]
|
|
}
|
|
csv {
|
|
columns => ["timestamp","uid","source_ip","source_port","destination_ip","destination_port","note","signature_id","event_message","sub_message","signature_count","host_count"]
|
|
separator => " "
|
|
}
|
|
mutate {
|
|
#add_tag => [ "conf_file_1111"]
|
|
}
|
|
}
|
|
}
|