mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-20 06:02:24 +00:00
tested and final: include installation type into installer...
it is finally possible to go without the ISO maker if you just want to try out a different T-Pot edition.
This commit is contained in:
parent
6f992604b8
commit
be12a24c2f
2 changed files with 18 additions and 11 deletions
|
@ -6,9 +6,6 @@
|
|||
# v16.10.0 by mo, DTAG, 2016-10-25 #
|
||||
########################################################
|
||||
|
||||
# Type of install, TPOT, SENSOR, INDUSTRIAL or FULL?
|
||||
#myFLAVOR="TPOT"
|
||||
|
||||
# Some global vars
|
||||
myPROXYFILEPATH="/root/tpot/etc/proxy"
|
||||
myNTPCONFPATH="/root/tpot/etc/ntp"
|
||||
|
@ -56,12 +53,26 @@ sleep 5
|
|||
# Install types are TPOT, HP, INDUSTRIAL, ALL
|
||||
while [ 1 != 2 ]
|
||||
do
|
||||
fuECHO "### Please choose your install type."
|
||||
fuECHO "### Please choose your install type and notice HW recommendation."
|
||||
fuECHO "###"
|
||||
fuECHO "### [T] - T-Pot Standard Installation"
|
||||
fuECHO "### > Cowrie, Dionaea, Elasticpot, Glastopf, Honeytrap, Suricata & ELK"
|
||||
fuECHO "### > 4 GB RAM (6-8 GB recommended)"
|
||||
fuECHO "### > 64GB disk (128 GB SSD recommended)"
|
||||
fuECHO "###"
|
||||
fuECHO "### [H] - Honeypots Only Installation"
|
||||
fuECHO "### > Cowrie, Dionaea, ElasticPot, Glastopf & Honeytrap"
|
||||
fuECHO "### > 3 GB RAM (4-6 GB recommended)"
|
||||
fuECHO "### > 64 GB disk (64 GB SSD recommended)"
|
||||
fuECHO "###"
|
||||
fuECHO "### [I] - Industrial"
|
||||
fuECHO "### > ConPot, eMobility, ELK & Suricata"
|
||||
fuECHO "### > 4 GB RAM (8 GB recommended)"
|
||||
fuECHO "### > 64 GB disk (128 GB SSD recommended)"
|
||||
fuECHO "###"
|
||||
fuECHO "### [T] - T-Pot (Standard w/o Industrial)"
|
||||
fuECHO "### [H] - Honeypots only (w/o Industrial)"
|
||||
fuECHO "### [I] - Industrial (ConPot, eMobility, ELK, Suricata) (8GB RAM recommended)"
|
||||
fuECHO "### [E] - Everything (8GB RAM recommended)"
|
||||
fuECHO "### > 8 GB RAM"
|
||||
fuECHO "### > 128 GB disk or larger (128 GB SSD or larger recommended)"
|
||||
fuECHO "###"
|
||||
read -p "Install Type: " myTYPE
|
||||
case "$myTYPE" in
|
||||
|
|
|
@ -89,10 +89,6 @@ if [ "$mySTART" = "1" ];
|
|||
exit
|
||||
fi
|
||||
|
||||
# Let's ask for the type of installation?
|
||||
#myFLAVOR=$(dialog --no-cancel --backtitle "$myBACKTITLE" --title "[ Installation type ... ]" --radiolist "" 11 76 4 "TPOT" "Standard (w/o INDUSTRIAL)" on "HP" "Honeypots only (w/o INDUSTRIAL)" off "INDUSTRIAL" "ConPot, eMobility, ELK, Suricata (8GB RAM recommended)" off "ALL" "Everything (8GB RAM required)" off 3>&1 1>&2 2>&3 3>&-)
|
||||
#sed -i 's#^myFLAVOR=.*#myFLAVOR="'$myFLAVOR'"#' $myINSTALLERPATH
|
||||
|
||||
# Let's ask the user for a proxy ...
|
||||
while true;
|
||||
do
|
||||
|
|
Loading…
Reference in a new issue