Merge remote-tracking branch 'remotes/origin/dev' into issue/5955

This commit is contained in:
m0duspwnens
2021-10-25 16:29:41 -04:00
13 changed files with 550 additions and 172 deletions

View File

@@ -3,6 +3,8 @@ input {
id => "endgame_data"
port => 3765
codec => es_bulk
request_headers_target_field => client_headers
remote_host_target_field => client_host
ssl => true
ssl_certificate_authorities => ["/usr/share/filebeat/ca.crt"]
ssl_certificate => "/usr/share/logstash/filebeat.crt"

View File

@@ -8,7 +8,7 @@
filter {
if [event][module] =~ "endgame" {
mutate {
remove_field => ["headers", "host"]
remove_field => ["client_headers", "client_host"]
}
}
}