mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-02-21 06:25:27 +01:00
23 lines
666 B
Plaintext
23 lines
666 B
Plaintext
# Original Author: Justin Henderson
|
|
# SANS Instructor and author of SANS SEC555: SIEM and Tactical Analytics
|
|
# Updated by: Wes Lambert
|
|
# Last Update: 12/14/2017
|
|
#
|
|
# This conf file is based on accepting logs for tunnel.log from Bro systems
|
|
# Security Onion syslog-ng.conf sets type to "bro_tunnels"
|
|
filter {
|
|
if [type] == "bro_tunnels" {
|
|
# This is the initial parsing of the log
|
|
mutate {
|
|
gsub => [ "message", "[\"']", "" ]
|
|
}
|
|
csv {
|
|
columns => ["timestamp","uid","source_ip","source_port","destination_ip","destination_port","tunnel_type","action"]
|
|
separator => " "
|
|
}
|
|
mutate {
|
|
#add_tag => [ "conf_file_1118"]
|
|
}
|
|
}
|
|
}
|