mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-01 12:32:12 +00:00
modify installation types, tweaking
This commit is contained in:
parent
640f8e85fb
commit
a525289ea2
2 changed files with 7 additions and 3 deletions
|
@ -162,7 +162,6 @@ services:
|
||||||
|
|
||||||
# Spiderfoot service
|
# Spiderfoot service
|
||||||
spiderfoot:
|
spiderfoot:
|
||||||
build: .
|
|
||||||
container_name: spiderfoot
|
container_name: spiderfoot
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
|
|
|
@ -98,10 +98,11 @@ EOF
|
||||||
# Install types are TPOT, HP, INDUSTRIAL, ALL
|
# Install types are TPOT, HP, INDUSTRIAL, ALL
|
||||||
tput cnorm
|
tput cnorm
|
||||||
myFLAVOR=$(dialog --no-cancel --backtitle "$myBACKTITLE" --title "[ Choose your edition ]" --no-tags --menu \
|
myFLAVOR=$(dialog --no-cancel --backtitle "$myBACKTITLE" --title "[ Choose your edition ]" --no-tags --menu \
|
||||||
"\nRequired: 4GB RAM, 64GB disk\nRecommended: 8GB RAM, 128GB SSD" 14 60 4 \
|
"\nRequired: 4GB RAM, 64GB disk\nRecommended: 8GB RAM, 128GB SSD" 14 60 5 \
|
||||||
"TPOT" "Standard Honeypots, Suricata & ELK" \
|
"TPOT" "Standard Honeypots, Suricata & ELK" \
|
||||||
"HP" "Honeypots only, w/o Suricata & ELK" \
|
"HP" "Honeypots only, w/o Suricata & ELK" \
|
||||||
"INDUSTRIAL" "Conpot, eMobility, Suricata & ELK" \
|
"COLLECTOR" "Heralding, Honeytrap & ELK" \
|
||||||
|
"INDUSTRIAL" "Conpot, Suricata & ELK" \
|
||||||
"EVERYTHING" "Everything" 3>&1 1>&2 2>&3 3>&-)
|
"EVERYTHING" "Everything" 3>&1 1>&2 2>&3 3>&-)
|
||||||
|
|
||||||
# Let's ask for a secure tsec password
|
# Let's ask for a secure tsec password
|
||||||
|
@ -355,6 +356,10 @@ EOF
|
||||||
|
|
||||||
# Let's make sure only myFLAVOR images will be downloaded and started
|
# Let's make sure only myFLAVOR images will be downloaded and started
|
||||||
case $myFLAVOR in
|
case $myFLAVOR in
|
||||||
|
COLLECTOR)
|
||||||
|
echo "### Preparing COLLECTOR flavor installation."
|
||||||
|
cp /opt/tpot/etc/compose/collect.yml $myTPOTCOMPOSE 2>&1>/dev/null
|
||||||
|
;;
|
||||||
HP)
|
HP)
|
||||||
echo "### Preparing HONEYPOT flavor installation."
|
echo "### Preparing HONEYPOT flavor installation."
|
||||||
cp /opt/tpot/etc/compose/hp.yml $myTPOTCOMPOSE 2>&1>/dev/null
|
cp /opt/tpot/etc/compose/hp.yml $myTPOTCOMPOSE 2>&1>/dev/null
|
||||||
|
|
Loading…
Reference in a new issue