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/http_output.conf
vendored
14
docker/elk/logstash/dist/http_output.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 {
|
||||
|
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 {
|
||||
|
@ -13,7 +13,7 @@ RUN apk --no-cache -U add \
|
||||
# Install from GitHub and setup
|
||||
mkdir -p /opt && \
|
||||
cd /opt/ && \
|
||||
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.2.4 && \
|
||||
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.2.5 && \
|
||||
cd t-pot-attack-map && \
|
||||
pip3 install --break-system-packages --upgrade pip && \
|
||||
pip3 install --break-system-packages -r requirements.txt && \
|
||||
|
Reference in New Issue
Block a user