mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
Add Beelzebub
This commit is contained in:
14
docker/elk/logstash/dist/http_output.conf
vendored
14
docker/elk/logstash/dist/http_output.conf
vendored
@ -29,6 +29,13 @@ input {
|
||||
type => "Adbhoney"
|
||||
}
|
||||
|
||||
# Beelzebub
|
||||
file {
|
||||
path => ["/data/beelzebub/log/beelzebub.json"]
|
||||
codec => json
|
||||
type => "Beelzebub"
|
||||
}
|
||||
|
||||
# Ciscoasa
|
||||
file {
|
||||
path => ["/data/ciscoasa/log/ciscoasa.log"]
|
||||
@ -253,6 +260,13 @@ filter {
|
||||
}
|
||||
}
|
||||
|
||||
# Beelzebub
|
||||
if [type] == "Beelzebub" {
|
||||
date {
|
||||
match => [ "timestamp", "ISO8601" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Ciscoasa
|
||||
if [type] == "Ciscoasa" {
|
||||
kv {
|
||||
|
14
docker/elk/logstash/dist/logstash.conf
vendored
14
docker/elk/logstash/dist/logstash.conf
vendored
@ -29,6 +29,13 @@ input {
|
||||
type => "Adbhoney"
|
||||
}
|
||||
|
||||
# Beelzebub
|
||||
file {
|
||||
path => ["/data/beelzebub/log/beelzebub.json"]
|
||||
codec => json
|
||||
type => "Beelzebub"
|
||||
}
|
||||
|
||||
# Ciscoasa
|
||||
file {
|
||||
path => ["/data/ciscoasa/log/ciscoasa.log"]
|
||||
@ -253,6 +260,13 @@ filter {
|
||||
}
|
||||
}
|
||||
|
||||
# Beelzebub
|
||||
if [type] == "Beelzebub" {
|
||||
date {
|
||||
match => [ "timestamp", "ISO8601" ]
|
||||
}
|
||||
}
|
||||
|
||||
# Ciscoasa
|
||||
if [type] == "Ciscoasa" {
|
||||
kv {
|
||||
|
@ -13,7 +13,7 @@ RUN apk -U --no-cache add \
|
||||
# Install from GitHub and setup
|
||||
mkdir -p /opt && \
|
||||
cd /opt/ && \
|
||||
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.2.0 && \
|
||||
git clone https://github.com/t3chn0m4g3/t-pot-attack-map -b 2.2.1 && \
|
||||
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