mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
Finalize Miniprint integration, tweaking
This commit is contained in:
14
docker/elk/logstash/dist/http_output.conf
vendored
14
docker/elk/logstash/dist/http_output.conf
vendored
@ -161,6 +161,13 @@ input {
|
||||
type => "Log4pot"
|
||||
}
|
||||
|
||||
# Miniprint
|
||||
file {
|
||||
path => ["/data/miniprint/log/miniprint.json"]
|
||||
codec => json
|
||||
type => "Miniprint"
|
||||
}
|
||||
|
||||
# Mailoney
|
||||
file {
|
||||
path => ["/data/mailoney/log/commands.log"]
|
||||
@ -612,6 +619,13 @@ filter {
|
||||
}
|
||||
}
|
||||
|
||||
# Miniprint
|
||||
if [type] == "Miniprint" {
|
||||
date {
|
||||
match => [ "timestamp", "ISO8601" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Redishoneypot
|
||||
if [type] == "Redishoneypot" {
|
||||
date {
|
||||
|
14
docker/elk/logstash/dist/logstash.conf
vendored
14
docker/elk/logstash/dist/logstash.conf
vendored
@ -175,6 +175,13 @@ input {
|
||||
type => "Medpot"
|
||||
}
|
||||
|
||||
# Miniprint
|
||||
file {
|
||||
path => ["/data/miniprint/log/miniprint.json"]
|
||||
codec => json
|
||||
type => "Miniprint"
|
||||
}
|
||||
|
||||
# Redishoneypot
|
||||
file {
|
||||
path => ["/data/redishoneypot/log/redishoneypot.log"]
|
||||
@ -612,6 +619,13 @@ filter {
|
||||
}
|
||||
}
|
||||
|
||||
# Miniprint
|
||||
if [type] == "Miniprint" {
|
||||
date {
|
||||
match => [ "timestamp", "ISO8601" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Redishoneypot
|
||||
if [type] == "Redishoneypot" {
|
||||
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.3 && \
|
||||
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.2.4 && \
|
||||
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