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