mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
Begin integration of honeyaml
This commit is contained in:
14
docker/elk/logstash/dist/logstash.conf
vendored
14
docker/elk/logstash/dist/logstash.conf
vendored
@ -133,6 +133,13 @@ input {
|
||||
type => "Heralding"
|
||||
}
|
||||
|
||||
# Honeyaml
|
||||
file {
|
||||
path => ["/data/honeyaml/log/honeyaml.log"]
|
||||
codec => json
|
||||
type => "Honeyaml"
|
||||
}
|
||||
|
||||
# Honeypots
|
||||
file {
|
||||
path => ["/data/honeypots/log/*.log"]
|
||||
@ -540,6 +547,13 @@ filter {
|
||||
}
|
||||
}
|
||||
|
||||
# Honeyaml
|
||||
if [type] == "Honeyaml" {
|
||||
date {
|
||||
match => [ "timestamp", "ISO8601" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Honeypots
|
||||
if [type] == "Honeypots" {
|
||||
date {
|
||||
|
Reference in New Issue
Block a user